Skip removed images (#14823)

This commit is contained in:
Tim Eisele
2025-09-20 15:20:21 +02:00
committed by GitHub
parent 59f77c24c9
commit b73ea1b99d

View File

@@ -2032,6 +2032,12 @@ namespace Emby.Server.Implementations.Library
}
}
if (!File.Exists(image.Path))
{
_logger.LogWarning("Image not found at {ImagePath}", image.Path);
continue;
}
ImageDimensions size;
try
{