Merge pull request #3649 from thornbill/fix-epg-update-maybe

Skip image processing for live tv sources
pull/3674/head
Bond-009 4 years ago committed by GitHub
commit e9758bde2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1876,7 +1876,8 @@ namespace Emby.Server.Implementations.Library
}
var outdated = forceUpdate ? item.ImageInfos.Where(i => i.Path != null).ToArray() : item.ImageInfos.Where(ImageNeedsRefresh).ToArray();
if (outdated.Length == 0)
// Skip image processing if current or live tv source
if (outdated.Length == 0 || item.SourceType != SourceType.Library)
{
RegisterItem(item);
return;

Loading…
Cancel
Save