Skip to content

Commit

Permalink
Clear error list after displaying it once.
Browse files Browse the repository at this point in the history
Fix for #6448 and #6487.

Signed-off-by: Camila Ayres <[email protected]>
  • Loading branch information
camilasan committed Jun 24, 2024
1 parent b836308 commit 0c65513
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/connectionvalidator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ void ConnectionValidator::reportResult(Status status)

// notify user of errors
if (!_errors.isEmpty() && _previousErrors != _errors) {
showSystrayErrorMessage();
showSystrayErrorMessage();
_errors.clear();
}

deleteLater();
Expand Down

0 comments on commit 0c65513

Please sign in to comment.