From 712fdfeac4ea3a566daa6bbf130b61f786c7af15 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Fri, 30 Apr 2021 08:50:24 +0200 Subject: [PATCH] adapt to de-lomboked code-base Signed-off-by: Andy Scherzinger --- .../models/json/push/DecryptedPushMessage.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java b/app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java index 8b7fe886b..1f3498950 100644 --- a/app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java +++ b/app/src/main/java/com/nextcloud/talk/models/json/push/DecryptedPushMessage.java @@ -105,6 +105,14 @@ public class DecryptedPushMessage { return this.timestamp; } + public long[] getNotificationIds() { + return notificationIds; + } + + public boolean isDeleteMultiple() { + return deleteMultiple; + } + public void setApp(String app) { this.app = app; } @@ -145,6 +153,14 @@ public class DecryptedPushMessage { this.timestamp = timestamp; } + public void setNotificationIds(long[] notificationIds) { + this.notificationIds = notificationIds; + } + + public void setDeleteMultiple(boolean deleteMultiple) { + this.deleteMultiple = deleteMultiple; + } + public boolean equals(final Object o) { if (o == this) { return true;