1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

Show warning when using the docker update mechanism

This commit is contained in:
Bogdan
2023-08-14 00:03:18 +03:00
committed by GitHub
parent 6a0dc72808
commit cc538c4b2d
5 changed files with 7 additions and 6 deletions
@@ -149,7 +149,7 @@ namespace NzbDrone.Common.Extensions
public static bool IsPathValid(this string path, PathValidationType validationType)
{
if (path.ContainsInvalidPathChars() || string.IsNullOrWhiteSpace(path))
if (string.IsNullOrWhiteSpace(path) || path.ContainsInvalidPathChars())
{
return false;
}