mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-09 22:22:24 +00:00
Throw the exception as is
This commit is contained in:
@@ -259,18 +259,11 @@ namespace MediaBrowser.Providers.Manager
|
||||
throw new ArgumentNullException(nameof(source));
|
||||
}
|
||||
|
||||
ExceptionDispatchInfo? saveException = null;
|
||||
|
||||
try
|
||||
{
|
||||
var fileStream = AsyncFile.OpenRead(source);
|
||||
await new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger).SaveImage(item, fileStream, mimeType, type, imageIndex, saveLocallyWithMedia, cancellationToken);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
saveException = ExceptionDispatchInfo.Capture(ex);
|
||||
_logger.LogError(ex, "Unable to save image {Source}", source);
|
||||
}
|
||||
finally
|
||||
{
|
||||
try
|
||||
@@ -281,13 +274,7 @@ namespace MediaBrowser.Providers.Manager
|
||||
{
|
||||
_logger.LogError(ex, "Source file {Source} not found or in use, skip removing", source);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
saveException ??= ExceptionDispatchInfo.Capture(ex);
|
||||
}
|
||||
}
|
||||
|
||||
saveException?.Throw();
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
||||
Reference in New Issue
Block a user