Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/710f5916f0017c5d478c0d853102a76e32cc8b59
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
1 deletions
@ -167,6 +167,7 @@
- [ipitio ](https://github.com/ipitio )
- [TheTyrius ](https://github.com/TheTyrius )
- [tallbl0nde ](https://github.com/tallbl0nde )
- [sleepycatcoding ](https://github.com/sleepycatcoding )
# Emby Contributors
@ -293,7 +293,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
return true ;
}
if ( string . Equals ( format , SubtitleFormat . VTT , StringComparison . OrdinalIgnoreCase ) )
if ( string . Equals ( format , SubtitleFormat . VTT , StringComparison . OrdinalIgnoreCase ) | | string . Equals ( format , SubtitleFormat . WEBVTT , StringComparison . OrdinalIgnoreCase ) )
{
value = new VttWriter ( ) ;
return true ;
@ -9,6 +9,7 @@ namespace MediaBrowser.Model.MediaInfo
public const string SSA = "ssa" ;
public const string ASS = "ass" ;
public const string VTT = "vtt" ;
public const string WEBVTT = "webvtt" ;
public const string TTML = "ttml" ;
}
}