mirror of
https://github.com/Radarr/Radarr
synced 2025-03-03 18:36:41 +00:00
fixed linux path conversion.
This commit is contained in:
parent
05370518c5
commit
fc9937bb7d
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ public static string AsOsAgnostic(this string path)
|
||||||
if (path.Length > 2 && path[1] == ':')
|
if (path.Length > 2 && path[1] == ':')
|
||||||
{
|
{
|
||||||
path = path.Replace(':', Path.DirectorySeparatorChar);
|
path = path.Replace(':', Path.DirectorySeparatorChar);
|
||||||
|
path = Path.DirectorySeparatorChar + path;
|
||||||
}
|
}
|
||||||
path = path.Replace("\\", Path.DirectorySeparatorChar.ToString());
|
path = path.Replace("\\", Path.DirectorySeparatorChar.ToString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue