Notification: fix issue: clear event only for the matching session.
We do not have multi session so the bug is not visible yet.
This commit is contained in:
parent
9510d43289
commit
3482452011
3 changed files with 5 additions and 5 deletions
|
|
@ -195,9 +195,9 @@ class DefaultNotificationDrawerManager @Inject constructor(
|
|||
/**
|
||||
* Clear the notifications for a single event.
|
||||
*/
|
||||
fun clearEvent(eventId: EventId, doRender: Boolean) {
|
||||
fun clearEvent(sessionId: SessionId, eventId: EventId, doRender: Boolean) {
|
||||
updateEvents(doRender = doRender) {
|
||||
it.clearEvent(eventId)
|
||||
it.clearEvent(sessionId, eventId)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class NotificationBroadcastReceiver : BroadcastReceiver() {
|
|||
defaultNotificationDrawerManager.clearMembershipNotificationForRoom(sessionId, roomId, doRender = false)
|
||||
}
|
||||
actionIds.dismissEvent -> if (eventId != null) {
|
||||
defaultNotificationDrawerManager.clearEvent(eventId, doRender = false)
|
||||
defaultNotificationDrawerManager.clearEvent(sessionId, eventId, doRender = false)
|
||||
}
|
||||
actionIds.markRoomRead -> if (roomId != null) {
|
||||
defaultNotificationDrawerManager.clearMessagesForRoom(sessionId, roomId, doRender = true)
|
||||
|
|
|
|||
|
|
@ -135,8 +135,8 @@ data class NotificationEventQueue constructor(
|
|||
)
|
||||
}
|
||||
|
||||
fun clearEvent(eventId: EventId) {
|
||||
queue.removeAll { it.eventId == eventId }
|
||||
fun clearEvent(sessionId: SessionId, eventId: EventId) {
|
||||
queue.removeAll { it.sessionId == sessionId && it.eventId == eventId }
|
||||
}
|
||||
|
||||
fun clearMembershipNotificationForSession(sessionId: SessionId) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue