mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 02:40:20 +08:00
fix: resolved #777
This commit is contained in:
parent
e58fecaeab
commit
93cb434765
@ -1 +1 @@
|
||||
5778
|
||||
5779
|
||||
|
@ -616,7 +616,8 @@ namespace Qv2ray::core::handler
|
||||
filteredConnections.count() > 5 ||
|
||||
QvMessageBoxAsk(nullptr, tr("Update Subscription"),
|
||||
tr("%1 out of %n entrie(s) have been filtered out, do you want to continue?", "", _newConnections.count())
|
||||
.arg(filteredConnections.count())) == QMessageBox::Yes;
|
||||
.arg(filteredConnections.count()) +
|
||||
NEWLINE + GetDisplayName(id)) == QMessageBox::Yes;
|
||||
|
||||
for (const auto &config : useFilteredConnections ? filteredConnections : _newConnections)
|
||||
{
|
||||
@ -666,7 +667,7 @@ namespace Qv2ray::core::handler
|
||||
tr("Update Subscription"),
|
||||
tr("There're %n connection(s) in the group that do not belong the current subscription (any more).", "",
|
||||
originalConnectionIdList.count()) +
|
||||
NEWLINE + tr("Would you like to remove them?")) == QMessageBox::Yes;
|
||||
NEWLINE + GetDisplayName(id) + NEWLINE + tr("Would you like to remove them?")) == QMessageBox::Yes;
|
||||
if (needContinue)
|
||||
{
|
||||
LOG(MODULE_CORE_HANDLER, "Removed old connections not have been matched.")
|
||||
|
Loading…
Reference in New Issue
Block a user