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

Add nullable dictionary openapi mapping

pull/6838/head
Cody Robibero 3 years ago
parent 8868b34d78
commit bb377b1466

@ -416,6 +416,18 @@ namespace Jellyfin.Server.Extensions
}
})
});
// Support dictionary with nullable string value.
options.MapType<Dictionary<string, string?>>(() =>
new OpenApiSchema
{
Type = "object",
AdditionalProperties = new OpenApiSchema
{
Type = "string",
Nullable = true
}
});
}
}
}

Loading…
Cancel
Save