Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/dc0e353b968e80b9532638f5a752f89572566d82
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
0 deletions
@ -9,11 +9,13 @@
"Channels" : "Channels" ,
"ChapterNameValue" : "Chapter {0}" ,
"Collections" : "Collections" ,
"Default" : "Default" ,
"DeviceOfflineWithName" : "{0} has disconnected" ,
"DeviceOnlineWithName" : "{0} is connected" ,
"FailedLoginAttemptWithUserName" : "Failed login attempt from {0}" ,
"Favorites" : "Favorites" ,
"Folders" : "Folders" ,
"Forced" : "Forced" ,
"Genres" : "Genres" ,
"HeaderAlbumArtists" : "Album Artists" ,
"HeaderContinueWatching" : "Continue Watching" ,
@ -77,6 +79,7 @@
"Sync" : "Sync" ,
"System" : "System" ,
"TvShows" : "TV Shows" ,
"Undefined" : "Undefined" ,
"User" : "User" ,
"UserCreatedWithName" : "User {0} has been created" ,
"UserDeletedWithName" : "User {0} has been deleted" ,
@ -191,6 +191,11 @@ namespace MediaBrowser.Model.Entities
attributes . Add ( Codec . ToUpperInvariant ( ) ) ;
}
if ( ! string . IsNullOrEmpty ( VideoRange ) )
{
attributes . Add ( VideoRange . ToUpperInvariant ( ) ) ;
}
if ( ! string . IsNullOrEmpty ( Title ) )
{
var result = new StringBuilder ( Title ) ;