1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 02:27:13 +00:00

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

View file

@ -31,7 +31,9 @@ public override HealthCheck Check()
{
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");
}
}