mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 16:42:44 +02:00
Implement MSC3987: Push actions clean-up
This commit is contained in:
+5
-1
@@ -82,6 +82,10 @@ extension MXPushRule: NotificationPushRuleType {
|
||||
}
|
||||
|
||||
var dontNotify: Bool {
|
||||
getAction(actionType: MXPushRuleActionTypeDontNotify) != nil
|
||||
guard let actions = actions as? [MXPushRuleAction] else {
|
||||
return true
|
||||
}
|
||||
// Support for MSC3987: The dont_notify push rule action is deprecated and replaced by an empty actions list.
|
||||
return actions.isEmpty || getAction(actionType: MXPushRuleActionTypeDontNotify) != nil
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user