Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5763ce5a425aa2216ec4cb7f1787a26cd6d5dd19
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
3 deletions
@ -213,7 +213,7 @@ namespace MediaBrowser.Providers.MediaInfo
}
var chapters = mediaInfo . Chapters ? ? new List < ChapterInfo > ( ) ;
if ( video. VideoType = = VideoType . BluRay | | ( video . IsoType . HasValue & & video . IsoType . Value = = IsoType . BluRay ) )
if ( blurayInfo ! = null )
{
FetchBdInfo ( video , chapters , mediaStreams , blurayInfo ) ;
}
@ -360,7 +360,15 @@ namespace MediaBrowser.Providers.MediaInfo
/// <returns>VideoStream.</returns>
private BlurayDiscInfo GetBDInfo ( string path )
{
return _blurayExaminer . GetDiscInfo ( path ) ;
try
{
return _blurayExaminer . GetDiscInfo ( path ) ;
}
catch ( Exception ex )
{
_logger . ErrorException ( "Error getting BDInfo" , ex ) ;
return null ;
}
}
private void FetchEmbeddedInfo ( Video video , Model . MediaInfo . MediaInfo data , MetadataRefreshOptions options )
@ -628,7 +636,7 @@ namespace MediaBrowser.Providers.MediaInfo
FetchFromDvdLib ( item , mount ) ;
}
if ( item. VideoType = = VideoType . BluRay | | ( item . IsoType . HasValue & & item . IsoType . Value = = IsoType . BluRay ) )
if ( blurayDiscInfo ! = null )
{
item . PlayableStreamFileNames = blurayDiscInfo . Files . ToList ( ) ;
}