mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-18 13:49:53 +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 available, long time, boolean local, boolean sent,
|
||||||
boolean seen, boolean read) {
|
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.message = message;
|
||||||
this.available = available;
|
this.available = available;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ public abstract class InvitationResponse extends InvitationMessage {
|
|||||||
GroupId groupId, ContactId contactId, boolean accept, long time,
|
GroupId groupId, ContactId contactId, boolean accept, long time,
|
||||||
boolean local, boolean sent, boolean seen, boolean read) {
|
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;
|
this.accept = accept;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user