Merge pull request #6514 from nextcloud/bugfix/minSupportDesktopVerMsg

User 'Connection issue' instead of 'Network error' in systray notification
This commit is contained in:
Matthieu Gallien 2024-03-20 10:03:21 +01:00 committed by GitHub
commit e707d685fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ void ConnectionValidator::reportResult(Status status)
void ConnectionValidator::showSystrayErrorMessage()
{
Systray::instance()->showMessage(tr("Network Error"),
Systray::instance()->showMessage(tr("Connection issue"),
_errors.join("<br>"),
QSystemTrayIcon::Warning);
}