mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Web UI: Remove unused code
This commit is contained in:
parent
8f439589ea
commit
ab0355f8d6
2 changed files with 6 additions and 24 deletions
|
@ -570,27 +570,10 @@ void HttpConnection::respondCommand(const QString& command) {
|
||||||
recheckTorrent(m_parser.post("hash"));
|
recheckTorrent(m_parser.post("hash"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(command == "recheckall"){
|
|
||||||
recheckAllTorrents();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HttpConnection::recheckTorrent(const QString& hash) {
|
void HttpConnection::recheckTorrent(const QString& hash) {
|
||||||
QTorrentHandle h = QBtSession::instance()->getTorrentHandle(hash);
|
QBtSession::instance()->recheckTorrent(hash);
|
||||||
if(h.is_valid()){
|
|
||||||
QBtSession::instance()->recheckTorrent(h.hash());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void HttpConnection::recheckAllTorrents() {
|
|
||||||
std::vector<torrent_handle> torrents = QBtSession::instance()->getTorrents();
|
|
||||||
std::vector<torrent_handle>::iterator torrentIT;
|
|
||||||
for(torrentIT = torrents.begin(); torrentIT != torrents.end(); torrentIT++) {
|
|
||||||
QTorrentHandle h = QTorrentHandle(*torrentIT);
|
|
||||||
if(h.is_valid())
|
|
||||||
QBtSession::instance()->recheckTorrent(h.hash());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HttpConnection::decreaseTorrentsPriority(const QStringList &hashes)
|
void HttpConnection::decreaseTorrentsPriority(const QStringList &hashes)
|
||||||
|
|
|
@ -66,7 +66,6 @@ protected slots:
|
||||||
void processDownloadedFile(const QString& url, const QString& file_path);
|
void processDownloadedFile(const QString& url, const QString& file_path);
|
||||||
void handleDownloadFailure(const QString& url, const QString& reason);
|
void handleDownloadFailure(const QString& url, const QString& reason);
|
||||||
void recheckTorrent(const QString& hash);
|
void recheckTorrent(const QString& hash);
|
||||||
void recheckAllTorrents();
|
|
||||||
void decreaseTorrentsPriority(const QStringList& hashes);
|
void decreaseTorrentsPriority(const QStringList& hashes);
|
||||||
void increaseTorrentsPriority(const QStringList& hashes);
|
void increaseTorrentsPriority(const QStringList& hashes);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue