Fix files skipped over if not in install directory

save-path-regex
Pat Hartl 2023-11-30 18:30:15 -06:00
parent 745cf0cce6
commit 74d8790ee2
1 changed files with 16 additions and 23 deletions

View File

@ -83,8 +83,6 @@ namespace LANCommander.SDK
{
var files = Directory.GetFiles(tempSavePath, "*", SearchOption.AllDirectories);
if (inInstallDir)
{
foreach (var file in files)
{
if (inInstallDir)
@ -109,11 +107,6 @@ namespace LANCommander.SDK
}
}
}
else
{
}
}
}
#endregion