restored AVOverride

This commit is contained in:
skilion 2016-06-29 21:41:44 +02:00
parent feb97d373d
commit 18b279a339

View file

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