Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/2d1f506f93ab007540429fdf74c1ec9ce96f9f02/NzbDrone.Web/Helpers/ProfilerHelper.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Web/Helpers/ProfilerHelper.cs

19 lines
453 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NzbDrone.Common;
namespace NzbDrone.Web.Helpers
{
public static class ProfilerHelper
{
public static bool Enabled()
{
var enviromentProvider = new EnviromentProvider();
var configFileProvider = new ConfigFileProvider(enviromentProvider);
return configFileProvider.EnableProfiler;
}
}
}