Fix files skipped over if not in install directory

This commit is contained in:
Pat Hartl 2023-11-30 18:30:15 -06:00
parent 745cf0cce6
commit 74d8790ee2

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