Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/0132ad05abf4a158a232d9960bc2c51c4e7842e9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
2 deletions
@ -196,7 +196,7 @@ namespace MediaBrowser.Model.Entities
| | dvProfile = = 8
| | dvProfile = = 9 ) )
{
var title = "D V Profile " + dvProfile ;
var title = "D olby Vision Profile " + dvProfile ;
if ( dvBlCompatId > 0 )
{
@ -208,6 +208,7 @@ namespace MediaBrowser.Model.Entities
1 = > title + " (HDR10)" ,
2 = > title + " (SDR)" ,
4 = > title + " (HLG)" ,
6 = > title + " (HDR10)" , // Technically means Blu-ray, but practically always HDR10
_ = > title
} ;
}
@ -330,7 +331,11 @@ namespace MediaBrowser.Model.Entities
attributes . Add ( Codec . ToUpperInvariant ( ) ) ;
}
if ( VideoRange ! = VideoRange . Unknown )
if ( VideoDoViTitle is not null )
{
attributes . Add ( VideoDoViTitle ) ;
}
else if ( VideoRange ! = VideoRange . Unknown )
{
attributes . Add ( VideoRange . ToString ( ) ) ;
}