Implement auto-declining for self-destructed introductions

This commit is contained in:
Sebastian Kürten
2021-03-03 09:17:35 +01:00
committed by Torsten Grote
parent 49850e4198
commit 0bf10a827f
23 changed files with 1170 additions and 42 deletions

View File

@@ -26,9 +26,9 @@ public class IntroductionResponse extends ConversationResponse {
boolean local, boolean read, boolean sent, boolean seen,
SessionId sessionId, boolean accepted, Author author,
AuthorInfo introducedAuthorInfo, Role role, boolean canSucceed,
long autoDeleteTimer) {
long autoDeleteTimer, boolean isAutoDecline) {
super(messageId, groupId, time, local, read, sent, seen, sessionId,
accepted, autoDeleteTimer, false);
accepted, autoDeleteTimer, isAutoDecline);
this.introducedAuthor = author;
this.introducedAuthorInfo = introducedAuthorInfo;
this.ourRole = role;