1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-22 07:43:01 +00:00

Fixed: Ignore extra spaces in path when not running on Windows

Closes #7251
This commit is contained in:
Mark McDowall 2024-09-27 16:45:38 -07:00 committed by Mark McDowall
parent 4f0e1c54c1
commit 6d0f10b877

View file

@ -147,14 +147,14 @@ namespace NzbDrone.Common.Extensions
return false;
}
// Only check for leading or trailing spaces for path when running on Windows.
if (OsInfo.IsWindows)
{
if (path.Trim() != path)
{
return false;
}
// Only check for leading or trailing spaces for path when running on Windows.
if (OsInfo.IsWindows)
{
var directoryInfo = new DirectoryInfo(path);
while (directoryInfo != null)