mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-29 19:18:42 -07:00
- Allow to force rechecking torrents
This commit is contained in:
parent
3282e1bcc9
commit
01bc15d3f4
9 changed files with 86 additions and 23 deletions
|
@ -388,6 +388,11 @@ void QTorrentHandle::set_tracker_login(QString username, QString password) {
|
|||
h.set_tracker_login(std::string(username.toUtf8().data()), std::string(password.toUtf8().data()));
|
||||
}
|
||||
|
||||
void QTorrentHandle::force_recheck() const {
|
||||
Q_ASSERT(h.is_valid());
|
||||
h.force_recheck();
|
||||
}
|
||||
|
||||
//
|
||||
// Operators
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue