Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c18b8ec608b44e04d17a1ef02a615b985ca00e7b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
4 deletions
@ -44,16 +44,16 @@ namespace MediaBrowser.Controller.Entities
public string CollectionType { get ; set ; }
private readonly Dictionary < string , LibraryOptions > _l ibraryOptions = new Dictionary < string , LibraryOptions > ( ) ;
private static readonly Dictionary < string , LibraryOptions > L ibraryOptions = new Dictionary < string , LibraryOptions > ( ) ;
public LibraryOptions GetLibraryOptions ( )
{
lock ( _l ibraryOptions)
lock ( L ibraryOptions)
{
LibraryOptions options ;
if ( ! _l ibraryOptions. TryGetValue ( Path , out options ) )
if ( ! L ibraryOptions. TryGetValue ( Path , out options ) )
{
options = LoadLibraryOptions ( ) ;
_l ibraryOptions[ Path ] = options ;
L ibraryOptions[ Path ] = options ;
}
return options ;
@ -143,6 +143,12 @@
<Content Include= "dashboard-ui\components\guestinviter\guestinviter.template.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\libraryoptionseditor\libraryoptionseditor.js" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\libraryoptionseditor\libraryoptionseditor.template.html" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include= "dashboard-ui\components\navdrawer\navdrawer.css" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>