Fixed: Don't try to create metadata images if source files doesn't exist

Closes #6015
pull/6033/head
Mark McDowall 1 year ago
parent a4ba3ea244
commit 9a1022386a

@ -1,4 +1,4 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
@ -443,6 +443,7 @@ namespace NzbDrone.Core.Extras.Metadata
private void DownloadImage(Series series, ImageFileResult image) private void DownloadImage(Series series, ImageFileResult image)
{ {
var fullPath = Path.Combine(series.Path, image.RelativePath); var fullPath = Path.Combine(series.Path, image.RelativePath);
var downloaded = true;
try try
{ {
@ -450,12 +451,19 @@ namespace NzbDrone.Core.Extras.Metadata
{ {
_httpClient.DownloadFile(image.Url, fullPath); _httpClient.DownloadFile(image.Url, fullPath);
} }
else else if (_diskProvider.FileExists(image.Url))
{ {
_diskProvider.CopyFile(image.Url, fullPath); _diskProvider.CopyFile(image.Url, fullPath);
} }
else
{
downloaded = false;
}
_mediaFileAttributeService.SetFilePermissions(fullPath); if (downloaded)
{
_mediaFileAttributeService.SetFilePermissions(fullPath);
}
} }
catch (HttpException ex) catch (HttpException ex)
{ {

Loading…
Cancel
Save