Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5803f951b552d1c1fd673baf43a9ae4124a686e3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
18 deletions
@ -197,6 +197,24 @@ namespace MediaBrowser.Controller.Xml
}
break ;
case "FirstAired" :
{
string firstAired = reader . ReadString ( ) ;
if ( ! string . IsNullOrWhiteSpace ( firstAired ) )
{
DateTime airDate ;
if ( DateTime . TryParse ( firstAired , out airDate ) & & airDate . Year > 1850 )
{
item . PremiereDate = airDate ;
item . ProductionYear = airDate . Year ;
}
}
break ;
}
case "Genres" :
FetchFromGenresNode ( reader . ReadSubtree ( ) , item ) ;
break ;
@ -40,24 +40,6 @@ namespace MediaBrowser.TV.Metadata
item . Name = reader . ReadString ( ) ;
break ;
case "FirstAired" :
{
string firstAired = reader . ReadString ( ) ;
if ( ! string . IsNullOrWhiteSpace ( firstAired ) )
{
DateTime airDate ;
if ( DateTime . TryParse ( firstAired , out airDate ) & & airDate . Year > 1850 )
{
item . PremiereDate = airDate ;
item . ProductionYear = airDate . Year ;
}
}
break ;
}
default :
base . FetchDataFromXmlNode ( reader , item ) ;
break ;