Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d97a1af2631a3c86ccbb9a4d5b56389315c96e23
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
1 deletions
@ -610,6 +610,16 @@ namespace MediaBrowser.Model.Dto
get { return ImageTags ! = null & & ImageTags . ContainsKey ( ImageType . Box ) ; }
}
/// <summary>
/// Gets a value indicating whether this instance has box image.
/// </summary>
/// <value><c>true</c> if this instance has box image; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public bool HasBoxRearImage
{
get { return ImageTags ! = null & & ImageTags . ContainsKey ( ImageType . BoxRear ) ; }
}
/// <summary>
/// Gets a value indicating whether this instance has menu image.
/// </summary>
@ -512,7 +512,7 @@ namespace MediaBrowser.WebDashboard.Api
var newLineBytes = Encoding . UTF8 . GetBytes ( Environment . NewLine ) ;
var versionString = string . Format ( "window.dashboardVersion='{0}';" , GetType( ) . Assembly . GetName ( ) . Version) ;
var versionString = string . Format ( "window.dashboardVersion='{0}';" , _appHost. Application Version) ;
var versionBytes = Encoding . UTF8 . GetBytes ( versionString ) ;
await memoryStream . WriteAsync ( versionBytes , 0 , versionBytes . Length ) . ConfigureAwait ( false ) ;