Fixed: Updated installation HealthCheck warning link to wiki.

This commit is contained in:
Taloth Saldono 2015-02-05 08:52:58 +01:00
parent 52a71a4e96
commit 955029ec43
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
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");
}
}