Skip to content

Commit

Permalink
Update OneDriveHandler.cs
Browse files Browse the repository at this point in the history
How on earth did this make it there
  • Loading branch information
Flangvik committed May 22, 2024
1 parent ab8cb0e commit 386f668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TeamFiltration/TeamFiltration/Handlers/OneDriveHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public async Task DumpPersonalOneDrive(string outPath)

_databaseHandler.WriteLog(new Log("EXFIL", "-->" + oneDriveItem.Name));

if (!File.Exists(Path.Combine(fullPath, oneDriveItem.Name)) && oneDriveItem.Name.EndsWith(".dat"))
if (!File.Exists(Path.Combine(fullPath, oneDriveItem.Name)))
await _oneDrive.DownloadItem(oneDriveItem, fullPath);
}
catch (Exception e)
Expand Down

0 comments on commit 386f668

Please sign in to comment.