mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-09-03 17:41:56 +00:00
commit
3202ad368f
@ -427,7 +427,7 @@ void TrackerList::reannounceSelected() {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
std::vector<announce_entry> trackers = h.trackers();
|
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) {
|
foreach (QTreeWidgetItem* w, selected_items) {
|
||||||
if (w->text(COL_URL) == misc::toQString(trackers[i].url)) {
|
if (w->text(COL_URL) == misc::toQString(trackers[i].url)) {
|
||||||
h.force_reannounce(0, i);
|
h.force_reannounce(0, i);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user