From 66c1acbce25d435ffb815879213a15b20cf3fb2a Mon Sep 17 00:00:00 2001 From: Thomas Piccirello <8296030+Piccirello@users.noreply.github.com> Date: Sun, 4 Aug 2024 02:21:15 -0700 Subject: [PATCH] Don't reannounce when removing tracker via WebAPI Discussion: https://github.com/qbittorrent/qBittorrent/pull/21056#discussion_r1674632942 PR #21077. --- src/webui/api/torrentscontroller.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/webui/api/torrentscontroller.cpp b/src/webui/api/torrentscontroller.cpp index c33b46147..d5cd8d1e4 100644 --- a/src/webui/api/torrentscontroller.cpp +++ b/src/webui/api/torrentscontroller.cpp @@ -882,9 +882,6 @@ void TorrentsController::removeTrackersAction() const QStringList urls = params()[u"urls"_s].split(u'|'); torrent->removeTrackers(urls); - - if (!torrent->isStopped()) - torrent->forceReannounce(); } void TorrentsController::addPeersAction()