Check for attachment file before trying to remove it during cleanup.

pull/1838/head
Andrew Mahone 5 years ago
parent 6defe80b62
commit c09eb34708

@ -220,11 +220,10 @@ namespace MediaBrowser.MediaEncoding.Attachments
_logger.LogWarning("Deleting extracted attachment {Path} due to failure: {ExitCode}", outputPath, exitCode); _logger.LogWarning("Deleting extracted attachment {Path} due to failure: {ExitCode}", outputPath, exitCode);
try try
{ {
_fileSystem.DeleteFile(outputPath); if (File.Exists(outputPath))
} {
catch (FileNotFoundException) _fileSystem.DeleteFile(outputPath);
{ }
} }
catch (IOException ex) catch (IOException ex)
{ {

Loading…
Cancel
Save