Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/50f88997bab58f4cfcbd3f420521776a54eb372d?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
22 additions and
10 deletions
@ -269,10 +269,7 @@ namespace MediaBrowser.ApiInteraction.Portable
{
string url = ApiUrl + "/ServerConfiguration" ;
// At the moment this can't be retrieved in protobuf format
SerializationFormats format = DataSerializer . CanDeSerializeJsv ? SerializationFormats . Jsv : SerializationFormats . Json ;
GetDataAsync ( url , callback , format ) ;
GetDataAsync ( url , callback ) ;
}
/// <summary>
@ -313,12 +313,9 @@ namespace MediaBrowser.ApiInteraction
{
string url = ApiUrl + "/ServerConfiguration" ;
// At the moment this can't be retrieved in protobuf format
SerializationFormats format = DataSerializer . CanDeSerializeJsv ? SerializationFormats . Jsv : SerializationFormats . Json ;
using ( Stream stream = await GetSerializedStreamAsync ( url , format ) . ConfigureAwait ( false ) )
using ( Stream stream = await GetSerializedStreamAsync ( url ) . ConfigureAwait ( false ) )
{
return D ataSerializer. D eserializeFromStream< ServerConfiguration > ( stream , format ) ;
return DeserializeFromStream < ServerConfiguration > ( stream ) ;
}
}
@ -1,12 +1,19 @@
using ProtoBuf ;
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// Serves as a common base class for the Server and UI application Configurations
/// ProtoInclude tells Protobuf about subclasses,
/// The number 50 can be any number, so long as it doesn't clash with any of the ProtoMember numbers either here or in subclasses.
/// </summary>
[ProtoContract, ProtoInclude(50, typeof(ServerConfiguration))]
public class BaseApplicationConfiguration
{
[ProtoMember(1)]
public bool EnableDebugLevelLogging { get ; set ; }
[ProtoMember(2)]
public int HttpServerPortNumber { get ; set ; }
public BaseApplicationConfiguration ( )
@ -1,13 +1,24 @@
using MediaBrowser.Model.Weather ;
using ProtoBuf ;
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// Represents the server configuration.
/// </summary>
[ProtoContract]
public class ServerConfiguration : BaseApplicationConfiguration
{
[ProtoMember(3)]
public bool EnableInternetProviders { get ; set ; }
[ProtoMember(4)]
public bool EnableUserProfiles { get ; set ; }
[ProtoMember(5)]
public string WeatherZipCode { get ; set ; }
[ProtoMember(6)]
public WeatherUnits WeatherUnit { get ; set ; }
public ServerConfiguration ( )