mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-09 05:14:23 +00:00
Merge pull request #6781 from Piccirello/torrent-download-api-response
Include response status in upload torrent API
This commit is contained in:
commit
0f7eabfa4b
@ -400,13 +400,19 @@ void WebApplication::action_command_download()
|
|||||||
params.savePath = savepath;
|
params.savePath = savepath;
|
||||||
params.category = category;
|
params.category = category;
|
||||||
|
|
||||||
|
bool partialSuccess = false;
|
||||||
foreach (QString url, list) {
|
foreach (QString url, list) {
|
||||||
url = url.trimmed();
|
url = url.trimmed();
|
||||||
if (!url.isEmpty()) {
|
if (!url.isEmpty()) {
|
||||||
Net::DownloadManager::instance()->setCookiesFromUrl(cookies, QUrl::fromEncoded(url.toUtf8()));
|
Net::DownloadManager::instance()->setCookiesFromUrl(cookies, QUrl::fromEncoded(url.toUtf8()));
|
||||||
BitTorrent::Session::instance()->addTorrent(url, params);
|
partialSuccess |= BitTorrent::Session::instance()->addTorrent(url, params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (partialSuccess)
|
||||||
|
print(QByteArray("Ok."), Http::CONTENT_TYPE_TXT);
|
||||||
|
else
|
||||||
|
print(QByteArray("Fails."), Http::CONTENT_TYPE_TXT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebApplication::action_command_upload()
|
void WebApplication::action_command_upload()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user