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

Remove useless null check

pull/5685/head
Bond_009 4 years ago
parent 7c51d0a50e
commit 0a00a73fec

@ -26,8 +26,8 @@ namespace MediaBrowser.Common.Json.Converters
{
if (reader.TokenType == JsonTokenType.String)
{
var stringEntries = reader.GetString()?.Split(',', StringSplitOptions.RemoveEmptyEntries);
if (stringEntries == null || stringEntries.Length == 0)
var stringEntries = reader.GetString().Split(',', StringSplitOptions.RemoveEmptyEntries);
if (stringEntries.Length == 0)
{
return Array.Empty<T>();
}

Loading…
Cancel
Save