Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3ad2703c35ef6872eee169d5892bf80b9573a484
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
3 deletions
@ -349,9 +349,14 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
channelNumber = channelNumber . TrimStart ( '0' ) ;
_logger . Debug ( "Found channel: " + channelNumber + " in Schedules Direct" ) ;
var schChannel = root . stations . FirstOrDefault ( item = > item . stationID = = map . stationID ) ;
AddToChannelPairCache ( listingsId , channelNumber , schChannel ) ;
if ( root . stations ! = null )
{
var schChannel = root . stations . FirstOrDefault ( item = > string . Equals ( item . stationID , map . stationID , StringComparison . OrdinalIgnoreCase ) ) ;
if ( schChannel ! = null )
{
AddToChannelPairCache ( listingsId , channelNumber , schChannel ) ;
}
}
}
_logger . Info ( "Added " + GetChannelPairCacheCount ( listingsId ) + " channels to the dictionary" ) ;