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

copy constructor

pull/4709/head
BaronGreenback 4 years ago
parent dae6798a18
commit 21f6d39432

@ -51,8 +51,10 @@ namespace Emby.Server.Implementations.Plugins
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
_pluginsPath = pluginsPath;
_appVersion = appVersion ?? throw new ArgumentNullException(nameof(appVersion));
_jsonOptions = JsonDefaults.GetOptions();
_jsonOptions.WriteIndented = true;
_jsonOptions = new JsonSerializerOptions(JsonDefaults.GetOptions())
{
WriteIndented = true
};
// We need to use the default GUID converter, so we need to remove any custom ones.
for (int a = _jsonOptions.Converters.Count - 1; a >= 0; a--)

Loading…
Cancel
Save