File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/src/main/java/com/nextcloud/talk/models/json/push Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ data class DecryptedPushMessage(
3232 var notificationId : Long? ,
3333
3434 @JsonField(name = [" nids" ])
35- var notificationIds : LongArray ? ,
35+ var notificationIds : List < Long > ? ,
3636
3737 @JsonField(name = [" delete" ])
3838 var delete : Boolean ,
@@ -93,7 +93,7 @@ data class DecryptedPushMessage(
9393 result = 31 * result + (subject?.hashCode() ? : 0 )
9494 result = 31 * result + (id?.hashCode() ? : 0 )
9595 result = 31 * result + (notificationId?.hashCode() ? : 0 )
96- result = 31 * result + (notificationIds?.contentHashCode () ? : 0 )
96+ result = 31 * result + (notificationIds?.hashCode () ? : 0 )
9797 result = 31 * result + (delete?.hashCode() ? : 0 )
9898 result = 31 * result + (deleteAll?.hashCode() ? : 0 )
9999 result = 31 * result + (deleteMultiple?.hashCode() ? : 0 )
You can’t perform that action at this time.
0 commit comments