Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cbf6ef4dbdde1b043c9d6b88e8a4f3736efa03a7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

Skip image processing for live tv sources

(cherry picked from commit e9758bde2a)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
pull/4001/head
Bond-009 5 years ago committed by Joshua M. Boniface
parent e4ce72e7bb
commit cbf6ef4dbd

@ -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