Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9f138d86b1f1dd24d02cdf0a24148a280615a0fa
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
12 deletions
@ -291,7 +291,7 @@ namespace MediaBrowser.Api
public async Task Post ( RegisterAppstoreSale request )
{
var success = await _securityManager . RegisterAppStoreSale ( request . Store , request . Application , request . Product , request . Feature, request . Type, request . StoreId , request . StoreToken , request . Email , request . Amount ) ;
var success = await _securityManager . RegisterAppStoreSale ( request . Store , request . Application , request . Product , request . Type, request . StoreId , request . StoreToken , request . Email , request . Amount ) ;
if ( ! success ) throw new ApplicationException ( "Error registering store sale" ) ;
}
@ -186,7 +186,7 @@ namespace MediaBrowser.Common.Implementations.Security
}
}
public async Task < Boolean > RegisterAppStoreSale ( string store , string application , string product , string feature ,
public async Task < Boolean > RegisterAppStoreSale ( string store , string application , string product ,
string type , string storeId , string storeToken , string email , string amt )
{
var data = new Dictionary < string , string > ( )
@ -194,7 +194,6 @@ namespace MediaBrowser.Common.Implementations.Security
{ "store" , store } ,
{ "application" , application } ,
{ "product" , product } ,
{ "feature" , feature } ,
{ "type" , type } ,
{ "storeId" , storeId } ,
{ "token" , storeToken } ,
@ -202,16 +201,9 @@ namespace MediaBrowser.Common.Implementations.Security
{ "amt" , amt }
} ;
var options = new HttpRequestOptions ( )
{
Url = AppstoreRegUrl ,
CancellationToken = CancellationToken . None
} ;
options . RequestHeaders . Add ( "X-Emby-Token" , /*_appHost.SystemId*/ "08606E86D043" ) ;
try
{
using ( var json = await _httpClient . Post ( options, data ) . ConfigureAwait ( false ) )
using ( var json = await _httpClient . Post ( AppstoreRegUrl , data , CancellationToken . None ) . ConfigureAwait ( false ) )
{
var reg = _jsonSerializer . DeserializeFromStream < RegRecord > ( json ) ;
if ( ! String . IsNullOrEmpty ( reg . key ) )
@ -45,7 +45,7 @@ namespace MediaBrowser.Common.Security
/// Register an appstore sale
/// </summary>
/// <returns>true if successful</returns>
Task < Boolean > RegisterAppStoreSale ( string store , string application , string product , string feature ,
Task < Boolean > RegisterAppStoreSale ( string store , string application , string product ,
string type , string storeId , string storeToken , string email , string amt ) ;
/// <summary>