fix message request notification

This commit is contained in:
Ryan Zhao 2022-02-25 15:18:27 +11:00
parent f22672ccd7
commit 936fbd27c2
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ public class NotificationPresenter: NSObject, NotificationsProtocol {
let numMessageRequests = threads.numberOfItems(inGroup: TSMessageRequestGroup)
// Allow this to show a notification if there are no message requests (ie. this is the first one)
guard numMessageRequests <= 1 else { return }
guard numMessageRequests == 0 else { return }
}
else if thread.isMessageRequest() && CurrentAppContext().appUserDefaults()[.hasHiddenMessageRequests] {
// If there are other interactions on this thread already then don't show the notification

View File

@ -18,7 +18,7 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol {
let numMessageRequests = threads.numberOfItems(inGroup: TSMessageRequestGroup)
// Allow this to show a notification if there are no message requests (ie. this is the first one)
guard numMessageRequests <= 1 else { return }
guard numMessageRequests == 0 else { return }
}
else if thread.isMessageRequest() && CurrentAppContext().appUserDefaults()[.hasHiddenMessageRequests] {
// If there are other interactions on this thread already then don't show the notification