Console: Clear out "proxy must be running" status after success

This commit is contained in:
zzz
2023-12-01 08:07:12 -05:00
parent f495b86116
commit 894a2d64ba

View File

@@ -1027,8 +1027,12 @@ public class ConsoleUpdateManager implements UpdateManager, RouterApp {
default:
break;
}
if (msg != null)
if (msg != null) {
finishStatus(msg);
} else {
if (success && _t("HTTP client proxy tunnel must be running").equals(_status))
_status = "";
}
synchronized(task) {
task.notifyAll();
}