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

(cherry picked from commit 9a1022386a031c928fc0495d6ab990ebce605ec1)

Closes #2933
This commit is contained in:
Mark McDowall 2023-09-14 17:07:32 -07:00 committed by Bogdan
parent fd5ab27df6
commit b209d047fa

View file

@ -346,6 +346,7 @@ private List<MetadataFile> ProcessAuthorImages(IMetadata consumer, Author author
private void DownloadImage(Author author, ImageFileResult image)
{
var fullPath = Path.Combine(author.Path, image.RelativePath);
var downloaded = true;
try
{
@ -353,12 +354,19 @@ private void DownloadImage(Author author, ImageFileResult image)
{
_httpClient.DownloadFile(image.Url, fullPath);
}
else
else if (_diskProvider.FileExists(image.Url))
{
_diskProvider.CopyFile(image.Url, fullPath);
}
else
{
downloaded = false;
}
_mediaFileAttributeService.SetFilePermissions(fullPath);
if (downloaded)
{
_mediaFileAttributeService.SetFilePermissions(fullPath);
}
}
catch (WebException ex)
{