Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cb17eca3a4f2153289c5b18b7cc8d6c16770a3a0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
19 additions and
5 deletions
@ -76,11 +76,25 @@ namespace MediaBrowser.Installer
protected void GetArgs ( )
{
var product = ConfigurationManager . AppSettings [ "product" ] ? ? "server" ;
PackageClass = ( PackageVersionClass ) Enum . Parse ( typeof ( PackageVersionClass ) , ConfigurationManager . AppSettings [ "class" ] ? ? "Release" ) ;
//cmd line args should be name/value pairs like: product=server archive="c:\.." caller=34552
var cmdArgs = Environment . GetCommandLineArgs ( ) ;
Archive = cmdArgs . Length > 1 ? cmdArgs [ 1 ] : null ;
var callerId = cmdArgs . Length > 2 ? cmdArgs [ 2 ] : null ;
var args = new Dictionary < string , string > ( StringComparer . OrdinalIgnoreCase ) ;
foreach ( var pair in cmdArgs )
{
var nameValue = pair . Split ( '=' ) ;
if ( nameValue . Length = = 2 )
{
args [ nameValue [ 0 ] ] = nameValue [ 1 ] ;
}
}
Archive = args . GetValueOrDefault ( "archive" , null ) ;
var product = args . GetValueOrDefault ( "product" , null ) ? ? ConfigurationManager . AppSettings [ "product" ] ? ? "server" ;
PackageClass = ( PackageVersionClass ) Enum . Parse ( typeof ( PackageVersionClass ) , args . GetValueOrDefault ( "class" , null ) ? ? ConfigurationManager . AppSettings [ "class" ] ? ? "Release" ) ;
PackageVersion = new Version ( args . GetValueOrDefault ( "version" , "4.0" ) ) ;
var callerId = args . GetValueOrDefault ( "caller" , null ) ;
if ( callerId ! = null )
{
// Wait for our caller to exit
@ -29,7 +29,7 @@
<PublisherName > Media Browser Team</PublisherName>
<SuiteName > Media Browser</SuiteName>
<OpenBrowserOnPublish > false</OpenBrowserOnPublish>
<ApplicationRevision > 32 </ApplicationRevision>
<ApplicationRevision > 34 </ApplicationRevision>
<ApplicationVersion > 0.1.1.%2a</ApplicationVersion>
<UseApplicationTrust > false</UseApplicationTrust>
<PublishWizardCompleted > true</PublishWizardCompleted>