Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ce971ea4a60f786c09f28e165bf0ac0ad03ab5fd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
0 deletions
@ -256,6 +256,7 @@ namespace MediaBrowser.Api
item . Genres = request . Genres ;
item . Tags = request . Tags ;
item . Studios = request . Studios . Select ( x = > x . Name ) . ToList ( ) ;
item . People = request . People . Select ( x = > new PersonInfo { Name = x . Name , Role = x . Role , Type = x . Type } ) . ToList ( ) ;
item . EndDate = request . EndDate ;
item . PremiereDate = request . PremiereDate ;
@ -462,6 +462,7 @@ namespace MediaBrowser.WebDashboard.Api
"clientsettings.js" ,
"dashboardpage.js" ,
"edititemmetadata.js" ,
"edititempeople.js" ,
"edititemimages.js" ,
"edituserpage.js" ,
"gamesrecommendedpage.js" ,
@ -84,6 +84,9 @@
<Content Include= "dashboard-ui\boxsets.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\edititempeople.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\css\detailtable.css" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
@ -351,6 +354,9 @@
<Content Include= "dashboard-ui\scripts\alphapicker.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\scripts\edititempeople.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\scripts\edititemimages.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>