Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d6ce2eacb51ecc9730fb02da52cb3bdf3cd361b0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
2 deletions
@ -109,7 +109,7 @@ namespace MediaBrowser.Providers.MediaInfo
// There's an internal subtitle stream for this language
if ( skipIfGraphicalSubtitlesPresent & &
internalMediaStreams . Any ( i = > i . Type = = MediaStreamType . Subtitle & & string . Equals ( i . Language , language , StringComparison . OrdinalIgnoreCase ) ) )
internalMediaStreams . Any ( i = > i . Type = = MediaStreamType . Subtitle & & i . IsGraphicalSubtitleStream & & string . Equals ( i . Language , language , StringComparison . OrdinalIgnoreCase ) ) )
{
return false ;
}
@ -218,7 +218,8 @@ namespace MediaBrowser.Providers.Subtitles
subtitleSearchParameters
} ;
var result = OpenSubtitles . SearchSubtitles ( parms . ToArray ( ) ) ;
var result = await OpenSubtitles . SearchSubtitlesAsync ( parms . ToArray ( ) , cancellationToken ) . ConfigureAwait ( false ) ;
if ( ! ( result is MethodResponseSubtitleSearch ) )
{
_logger . Debug ( "Invalid response type" ) ;