From bfa8dc7f676fcbacd2dc2c4d195a407cabd96587 Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Tue, 21 Nov 2023 10:21:20 +0300 Subject: [PATCH] Do not apply share limit if the previous one was applied PR #19970. Closes #19857. --- src/base/bittorrent/sessionimpl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/base/bittorrent/sessionimpl.cpp b/src/base/bittorrent/sessionimpl.cpp index e1011777c..725ad7735 100644 --- a/src/base/bittorrent/sessionimpl.cpp +++ b/src/base/bittorrent/sessionimpl.cpp @@ -2227,6 +2227,8 @@ void SessionImpl::processShareLimits() torrent->setSuperSeeding(true); LogMsg(u"%1 %2 %3"_s.arg(description, tr("Super seeding enabled."), torrentName)); } + + continue; } } }