Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4df7590e52ba3501312bb901e9891fefe6812382
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
0 deletions
@ -84,6 +84,8 @@ namespace MediaBrowser.Model.Configuration
public bool AutomaticallyAddToCollection { get ; set ; }
public bool DisableEmbeddedSubtitles { get ; set ; }
public TypeOptions [ ] TypeOptions { get ; set ; }
public TypeOptions ? GetTypeOptions ( string type )
@ -229,6 +229,12 @@ namespace MediaBrowser.Providers.MediaInfo
video . Video3DFormat ? ? = mediaInfo . Video3DFormat ;
}
if ( libraryOptions . DisableEmbeddedSubtitles )
{
_logger . LogInformation ( "Disabling embedded subtitles due to DisableEmbeddedSubtitles setting." ) ;
mediaStreams . RemoveAll ( i = > i . Type = = MediaStreamType . Subtitle & & ! i . IsExternal ) ;
}
var videoStream = mediaStreams . FirstOrDefault ( i = > i . Type = = MediaStreamType . Video ) ;
video . Height = videoStream ? . Height ? ? 0 ;