Parcourir la source

Merge pull request #5486 from nextcloud/bugfix/5421

Fix display of 2FA notification.
Matthieu Gallien il y a 2 ans
Parent
commit
30cfba49ca
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. 6 0
      src/gui/tray/usermodel.cpp

+ 6 - 0
src/gui/tray/usermodel.cpp

@@ -120,6 +120,12 @@ void User::showDesktopNotification(const Activity &activity)
 {
     const auto notificationId = activity._id;
     const auto message = AccountManager::instance()->accounts().count() == 1 ? "" : activity._accName;
+
+    // the user needs to interact with this notification
+    if (activity._links.size() > 0) {
+        _activityModel->addNotificationToActivityList(activity);
+    }
+
     showDesktopNotification(activity._subject, message, notificationId);
 }