mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Remember when invitation was auto-declined due to deletion
And render differently
This commit is contained in:
committed by
Torsten Grote
parent
a7590956fd
commit
5c41d09c52
@@ -13,9 +13,9 @@ public class BlogInvitationResponse extends InvitationResponse {
|
||||
public BlogInvitationResponse(MessageId id, GroupId groupId, long time,
|
||||
boolean local, boolean read, boolean sent, boolean seen,
|
||||
SessionId sessionId, boolean accept, GroupId shareableId,
|
||||
long autoDeleteTimer) {
|
||||
long autoDeleteTimer, boolean isAutoDecline) {
|
||||
super(id, groupId, time, local, read, sent, seen, sessionId,
|
||||
accept, shareableId, autoDeleteTimer, false);
|
||||
accept, shareableId, autoDeleteTimer, isAutoDecline);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -16,9 +16,9 @@ public class ForumInvitationResponse extends InvitationResponse {
|
||||
public ForumInvitationResponse(MessageId id, GroupId groupId, long time,
|
||||
boolean local, boolean read, boolean sent, boolean seen,
|
||||
SessionId sessionId, boolean accept, GroupId shareableId,
|
||||
long autoDeleteTimer) {
|
||||
long autoDeleteTimer, boolean isAutoDecline) {
|
||||
super(id, groupId, time, local, read, sent, seen, sessionId,
|
||||
accept, shareableId, autoDeleteTimer, false);
|
||||
accept, shareableId, autoDeleteTimer, isAutoDecline);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user