Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/966d1ac347ad3febff1c22d023258ab651cbb444?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -295,7 +295,7 @@ namespace MediaBrowser.Common.Implementations
{
{
var programDataPath = _useDebugPath ? ConfigurationManager . AppSettings [ "DebugProgramDataPath" ] : Path . Combine ( ConfigurationManager . AppSettings [ "ReleaseProgramDataPath" ] , ConfigurationManager . AppSettings [ "ProgramDataFolderName" ] ) ;
var programDataPath = _useDebugPath ? ConfigurationManager . AppSettings [ "DebugProgramDataPath" ] : Path . Combine ( ConfigurationManager . AppSettings [ "ReleaseProgramDataPath" ] , ConfigurationManager . AppSettings [ "ProgramDataFolderName" ] ) ;
programDataPath = programDataPath . Replace ( "% Common ApplicationData%", Environment . GetFolderPath ( Environment . SpecialFolder . Common ApplicationData) ) ;
programDataPath = programDataPath . Replace ( "% ApplicationData%", Environment . GetFolderPath ( Environment . SpecialFolder . ApplicationData) ) ;
// If it's a relative path, e.g. "..\"
// If it's a relative path, e.g. "..\"
if ( ! Path . IsPathRooted ( programDataPath ) )
if ( ! Path . IsPathRooted ( programDataPath ) )
@ -11,7 +11,7 @@
</nlog>
</nlog>
<appSettings>
<appSettings>
<add key="DebugProgramDataPath" value="..\..\..\..\ProgramData-Server" />
<add key="DebugProgramDataPath" value="..\..\..\..\ProgramData-Server" />
<add key="ReleaseProgramDataPath" value="%Common ApplicationData%" />
<add key="ReleaseProgramDataPath" value="%ApplicationData%" />
<add key="ProgramDataFolderName" value="MediaBrowser-Server" />
<add key="ProgramDataFolderName" value="MediaBrowser-Server" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
</appSettings>