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);
try
{
_fileSystem.DeleteFile(outputPath);
}
catch (FileNotFoundException)
{
if (File.Exists(outputPath))
{
_fileSystem.DeleteFile(outputPath);
}
}
catch (IOException ex)
{

Loading…
Cancel
Save