mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Properly pass message read state for sharing invitations and responses
Fixes #350
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user