Skip to content

Commit

Permalink
Console: Clear out "proxy must be running" status after success
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzi2p committed Dec 1, 2023
1 parent f495b86 commit 894a2d6
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1027,8 +1027,12 @@ public void notifyCheckComplete(UpdateTask task, boolean newer, boolean success)
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();
}
Expand Down

0 comments on commit 894a2d6

Please sign in to comment.