1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00

Fixed: A lot of small ui errors (e.g. More not showing) (Revert of #1959)

This commit is contained in:
Leonardo Galli
2017-08-24 07:57:31 +02:00
parent 38af8edd59
commit a5823bb15f
246 changed files with 2679 additions and 2276 deletions
@@ -1,4 +1,4 @@
using System;
using System;
using System.IO;
using NzbDrone.Common.Disk;
using NzbDrone.Common.EnvironmentInfo;
@@ -45,14 +45,14 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
return new HealthCheck(GetType(), HealthCheckResult.Error,
string.Format("Cannot install update because startup folder '{0}' is not writable by the user '{1}'.", startupFolder, Environment.UserName),
"Cannot install update because startup folder is not writable by the user.");
"Cannot install update because startup folder is not writable by the user");
}
if (!_diskProvider.FolderWritable(uiFolder))
{
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");
}
}
@@ -60,7 +60,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
{
if (_checkUpdateService.AvailableUpdate() != null)
{
return new HealthCheck(GetType(), HealthCheckResult.Warning, "New update is available.");
return new HealthCheck(GetType(), HealthCheckResult.Warning, "New update is available");
}
}