Skip to content
Snippets Groups Projects
Verified Commit 48a3db46 authored by Torsten Grote's avatar Torsten Grote
Browse files

Properly pass message read state for sharing invitations and responses

Fixes #350
parent f52819f4
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ public abstract class InvitationRequest extends InvitationMessage {
boolean available, long time, boolean local, boolean sent,
boolean seen, boolean read) {
super(id, sessionId, groupId, contactId, time, local, read, sent, seen);
super(id, sessionId, groupId, contactId, time, local, sent, seen, read);
this.message = message;
this.available = available;
}
......
......@@ -13,7 +13,7 @@ public abstract class InvitationResponse extends InvitationMessage {
GroupId groupId, ContactId contactId, boolean accept, long time,
boolean local, boolean sent, boolean seen, boolean read) {
super(id, sessionId, groupId, contactId, time, local, read, sent, seen);
super(id, sessionId, groupId, contactId, time, local, sent, seen, read);
this.accept = accept;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment