mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Queue refresh after subtitle upload + minor fixes
This commit is contained in:
parent
647c080ef7
commit
229917a2f8
@ -417,6 +417,8 @@ namespace Jellyfin.Api.Controllers
|
||||
IsForced = body.IsForced,
|
||||
Stream = memoryStream
|
||||
}).ConfigureAwait(false);
|
||||
_providerManager.QueueRefresh(video.Id, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), RefreshPriority.High);
|
||||
|
||||
return NoContent();
|
||||
}
|
||||
|
||||
|
@ -187,8 +187,8 @@ namespace MediaBrowser.Providers.Subtitles
|
||||
{
|
||||
var saveInMediaFolder = libraryOptions.SaveSubtitlesWithMedia;
|
||||
|
||||
using var stream = response.Stream;
|
||||
using var memoryStream = new MemoryStream();
|
||||
await using var stream = response.Stream;
|
||||
await using var memoryStream = new MemoryStream();
|
||||
await stream.CopyToAsync(memoryStream).ConfigureAwait(false);
|
||||
memoryStream.Position = 0;
|
||||
|
||||
@ -236,7 +236,7 @@ namespace MediaBrowser.Providers.Subtitles
|
||||
|
||||
foreach (var savePath in savePaths)
|
||||
{
|
||||
_logger.LogInformation("Saving subtitles to {0}", savePath);
|
||||
_logger.LogInformation("Saving subtitles to {SavePath}", savePath);
|
||||
|
||||
_monitor.ReportFileSystemChangeBeginning(savePath);
|
||||
|
||||
@ -254,13 +254,19 @@ namespace MediaBrowser.Providers.Subtitles
|
||||
{
|
||||
// Bug in analyzer -- https://github.com/dotnet/roslyn-analyzers/issues/5160
|
||||
#pragma warning disable CA1508
|
||||
exs ??= new List<Exception>()
|
||||
{
|
||||
ex
|
||||
};
|
||||
if (exs == null)
|
||||
#pragma warning restore CA1508
|
||||
|
||||
}
|
||||
{
|
||||
exs = new List<Exception>
|
||||
{
|
||||
ex
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
exs.Add(ex);
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
_monitor.ReportFileSystemChangeComplete(savePath, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user