mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 04:45:37 +01:00
fixed broken test
This commit is contained in:
parent
25e6473537
commit
3e65c393fd
1 changed files with 9 additions and 1 deletions
|
|
@ -58,7 +58,15 @@ private static string GetProperCapitalization(DirectoryInfo dirInfo)
|
|||
//Drive letter
|
||||
return dirInfo.Name.ToUpper();
|
||||
}
|
||||
return Path.Combine(GetProperCapitalization(parentDirInfo), parentDirInfo.GetDirectories(dirInfo.Name)[0].Name);
|
||||
|
||||
var folderName = dirInfo.Name;
|
||||
|
||||
if (dirInfo.Exists)
|
||||
{
|
||||
folderName = parentDirInfo.GetDirectories(dirInfo.Name)[0].Name;
|
||||
}
|
||||
|
||||
return Path.Combine(GetProperCapitalization(parentDirInfo), folderName);
|
||||
}
|
||||
|
||||
public static string GetActualCasing(this string path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue