Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/94d805d03d93764365c5b63e23f239d47d23ad0a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
3 deletions
@ -342,10 +342,8 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
public string URL { get ; set ; }
[JsonConverter(typeof(JsonBoolNumberConverter))]
public bool Favorite { get ; set ; }
[JsonConverter(typeof(JsonBoolNumberConverter))]
public bool DRM { get ; set ; }
public int HD { get ; set ; }
@ -24,7 +24,7 @@ namespace MediaBrowser.Common.Json.Converters
/// <inheritdoc />
public override void Write ( Utf8JsonWriter writer , bool value , JsonSerializerOptions options )
{
JsonSerializer. Serialize ( writer , value , options ) ;
writer. WriteBooleanValue ( value ) ;
}
}
}
@ -19,5 +19,16 @@ namespace Jellyfin.Common.Tests.Json
var value = JsonSerializer . Deserialize < bool > ( input , options ) ;
Assert . Equal ( value , output ) ;
}
[Theory]
[InlineData(true, "true")]
[InlineData(false, "false")]
public static void Serialize_Bool_Success ( bool input , string output )
{
var options = new JsonSerializerOptions ( ) ;
options . Converters . Add ( new JsonBoolNumberConverter ( ) ) ;
var value = JsonSerializer . Serialize ( input , options ) ;
Assert . Equal ( value , output ) ;
}
}
}