diff --git a/makespec/BUILDVERSION b/makespec/BUILDVERSION index c95247f9..a7817b9d 100644 --- a/makespec/BUILDVERSION +++ b/makespec/BUILDVERSION @@ -1 +1 @@ -5778 +5779 diff --git a/src/core/handler/ConfigHandler.cpp b/src/core/handler/ConfigHandler.cpp index fe55a59d..c415cc69 100644 --- a/src/core/handler/ConfigHandler.cpp +++ b/src/core/handler/ConfigHandler.cpp @@ -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.")