mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
commit
3202ad368f
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ void TrackerList::reannounceSelected() {
|
|||
return;
|
||||
|
||||
std::vector<announce_entry> trackers = h.trackers();
|
||||
for (int i = 0; i < trackers.size(); ++i) {
|
||||
for (size_t i = 0; i < trackers.size(); ++i) {
|
||||
foreach (QTreeWidgetItem* w, selected_items) {
|
||||
if (w->text(COL_URL) == misc::toQString(trackers[i].url)) {
|
||||
h.force_reannounce(0, i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue