mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Send mailbox update to contacts if supported mailbox versions changed
This commit is contained in:
@@ -11,7 +11,7 @@ import javax.annotation.concurrent.Immutable;
|
||||
public class MailboxUpdate {
|
||||
|
||||
boolean hasMailbox;
|
||||
private final List<MailboxVersion> clientSupports;
|
||||
private List<MailboxVersion> clientSupports;
|
||||
|
||||
public MailboxUpdate(List<MailboxVersion> clientSupports) {
|
||||
this.hasMailbox = false;
|
||||
@@ -22,6 +22,10 @@ public class MailboxUpdate {
|
||||
return clientSupports;
|
||||
}
|
||||
|
||||
public void setClientSupports(List<MailboxVersion> clientSupports) {
|
||||
this.clientSupports = clientSupports;
|
||||
}
|
||||
|
||||
public boolean hasMailbox() {
|
||||
return hasMailbox;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user