mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Merge pull request #8767 from glassez/fix-legacy-api
Fix pauseAll/resumeAll legacy API methods. Closes #8766
This commit is contained in:
commit
b155b8609f
@ -336,7 +336,11 @@ void WebApplication::doProcessRequest()
|
|||||||
scope = compatInfo.scope;
|
scope = compatInfo.scope;
|
||||||
action = compatInfo.action;
|
action = compatInfo.action;
|
||||||
|
|
||||||
if (legacyAction == QLatin1String("command/delete"))
|
if (legacyAction == QLatin1String("command/pauseAll"))
|
||||||
|
m_params["hashes"] = "all";
|
||||||
|
else if (legacyAction == QLatin1String("command/resumeAll"))
|
||||||
|
m_params["hashes"] = "all";
|
||||||
|
else if (legacyAction == QLatin1String("command/delete"))
|
||||||
m_params["deleteFiles"] = "false";
|
m_params["deleteFiles"] = "false";
|
||||||
else if (legacyAction == QLatin1String("command/deletePerm"))
|
else if (legacyAction == QLatin1String("command/deletePerm"))
|
||||||
m_params["deleteFiles"] = "true";
|
m_params["deleteFiles"] = "true";
|
||||||
|
Loading…
Reference in New Issue
Block a user