From b72442a0362a266990b5a8f7431ec708de1ff006 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 18 Aug 2020 23:33:25 +0200 Subject: WIP: FIX p2p --- src/Cache.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Cache.cpp') diff --git a/src/Cache.cpp b/src/Cache.cpp index bb87857..eecc790 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -351,9 +351,9 @@ namespace dchat string downloadLimitBytesStr = to_string(downloadLimitBytes); - std::string cmdUtf8 = "curl -L --silent -o '"; - cmdUtf8 += escapeCommand(filepath.string()); - cmdUtf8 += "' --max-filesize " + downloadLimitBytesStr + " --range 0-" + downloadLimitBytesStr + " --url '" + escapeCommand(url) + "'"; + std::string cmdUtf8 = "curl -L --silent -o "; + cmdUtf8 += escapeCommandArg(filepath.string()); + cmdUtf8 += " --max-filesize " + downloadLimitBytesStr + " --range 0-" + downloadLimitBytesStr + " --url " + escapeCommandArg(url); Process::string_type cmd = toNativeString(cmdUtf8); // TODO: Use this instead of curl on windows: certutil.exe -urlcache -split -f "https://url/to/file" path/and/name/to/save/as/file Process *process = new Process(cmd, toNativeString(""), nullptr, nullptr, false); -- cgit v1.2.3