Updated more wiki links

This commit is contained in:
Mark McDowall 2021-08-01 16:12:30 -07:00
parent 92b9f46399
commit 2031da05f6
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
return new HealthCheck(GetType(), HealthCheckResult.Error,
string.Format("Cannot install update because startup folder '{0}' is in an App Translocation folder.", startupFolder),
"#cannot-install-update-because-startup-folder-is-in-an-App-Translocation-folder");
"#cannot-install-update-because-startup-folder-is-in-an-app-translocation-folder");
}
if (!_diskProvider.FolderWritable(startupFolder))
@ -54,7 +54,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
return new HealthCheck(GetType(), HealthCheckResult.Error,
string.Format("Cannot install update because UI folder '{0}' is not writable by the user '{1}'.", uiFolder, Environment.UserName),
"#cannot-install-update-because-UI-folder-is-not-writable-by-the-user");
"#cannot-install-update-because-ui-folder-is-not-writable-by-the-user");
}
}