Ignore antivirus errors when downloading files

- closes #31
This commit is contained in:
Jonathon M. Abbott 2016-04-01 22:41:23 +10:00
parent 880af3ec03
commit 8b68adf8dd

View file

@ -99,7 +99,7 @@ final class OneDriveApi
import std.file;
if (exists(saveToPath)) remove(saveToPath);
}
char[] url = itemByIdUrl ~ id ~ "/content";
char[] url = itemByIdUrl ~ id ~ "/content?AVOverride=1";
download(url, saveToPath);
}