Properly pass message read state for sharing invitations and responses

Fixes #350
This commit is contained in:
Torsten Grote
2016-10-05 16:01:43 -03:00
parent f52819f4ca
commit 48a3db46bc
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}

View File

@@ -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;
}