Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c4925ad70bd84477bd1e8df59de3db1196432fc2 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Serialize Guid.Empty to null

pull/4568/head
crobibero 4 years ago
parent 02c1879533
commit c4925ad70b

@ -15,6 +15,15 @@ namespace MediaBrowser.Common.Json.Converters
/// <inheritdoc />
public override void Write(Utf8JsonWriter writer, Guid value, JsonSerializerOptions options)
=> writer.WriteStringValue(value);
{
if (value == Guid.Empty)
{
writer.WriteNullValue();
}
else
{
writer.WriteStringValue(value);
}
}
}
}

Loading…
Cancel
Save