mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 11:05:44 +00:00
Fixed: Updated installation HealthCheck warning link to wiki.
This commit is contained in:
parent
52a71a4e96
commit
955029ec43
1 changed files with 3 additions and 1 deletions
|
@ -31,7 +31,9 @@ public override HealthCheck Check()
|
||||||
{
|
{
|
||||||
if (!_diskProvider.FolderWritable(_appFolderInfo.StartUpFolder))
|
if (!_diskProvider.FolderWritable(_appFolderInfo.StartUpFolder))
|
||||||
{
|
{
|
||||||
return new HealthCheck(GetType(), HealthCheckResult.Error, string.Format("Cannot install update because startup folder '{0}' is not writable by the user '{1}'.", _appFolderInfo.StartUpFolder, Environment.UserName));
|
return new HealthCheck(GetType(), HealthCheckResult.Error,
|
||||||
|
string.Format("Cannot install update because startup folder '{0}' is not writable by the user '{1}'.", _appFolderInfo.StartUpFolder, Environment.UserName),
|
||||||
|
"Cannot install update because startup folder is not writable by the user");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue