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

Fixed: Throw SonarrStartupException if can't access AppFolder Location

pull/2536/head
Qstick 7 years ago committed by Mark McDowall
parent bf1fbd7fc4
commit 6c09b7dc28

@ -1,4 +1,4 @@
using System;
using System;
using System.Security.AccessControl;
using System.Security.Principal;
using NLog;
@ -28,7 +28,15 @@ namespace NzbDrone.Common.EnvironmentInfo
public void Register()
{
_diskProvider.EnsureFolder(_appFolderInfo.AppDataFolder);
try
{
_diskProvider.EnsureFolder(_appFolderInfo.AppDataFolder);
}
catch (UnauthorizedAccessException)
{
throw new SonarrStartupException("Cannot create AppFolder, Access to the path {0} is denied", _appFolderInfo.AppDataFolder);
}
if (OsInfo.IsWindows)
{

Loading…
Cancel
Save