aboutsummaryrefslogtreecommitdiff
path: root/plugins/omemo/src/encrypt_state.vala
diff options
context:
space:
mode:
authorSamuel Hand <samuel.hand@openmailbox.org>2018-07-11 18:17:57 +0100
committerSamuel Hand <samuel.hand@openmailbox.org>2018-07-11 18:17:57 +0100
commit74c48e65671058225ea77a6d1cc48e12798d9d21 (patch)
tree4b33cce594d8cc0294bcf96763693ec4c29bff9f /plugins/omemo/src/encrypt_state.vala
parent62ad56af216410d51ebfd6fa542e936703465549 (diff)
downloaddino-74c48e65671058225ea77a6d1cc48e12798d9d21.tar.gz
dino-74c48e65671058225ea77a6d1cc48e12798d9d21.zip
Enable encryption in MUCs
Diffstat (limited to 'plugins/omemo/src/encrypt_state.vala')
-rw-r--r--plugins/omemo/src/encrypt_state.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/omemo/src/encrypt_state.vala b/plugins/omemo/src/encrypt_state.vala
index 80ae40d7..fd72faf4 100644
--- a/plugins/omemo/src/encrypt_state.vala
+++ b/plugins/omemo/src/encrypt_state.vala
@@ -7,7 +7,7 @@ public class EncryptState {
public int other_lost { get; internal set; }
public int other_unknown { get; internal set; }
public int other_failure { get; internal set; }
- public bool other_list { get; internal set; }
+ public int other_waiting_lists { get; internal set; }
public int own_devices { get; internal set; }
public int own_success { get; internal set; }
@@ -17,8 +17,8 @@ public class EncryptState {
public bool own_list { get; internal set; }
public string to_string() {
- return @"EncryptState (encrypted=$encrypted, other=(devices=$other_devices, success=$other_success, lost=$other_lost, unknown=$other_unknown, failure=$other_failure, list=$other_list), own=(devices=$own_devices, success=$own_success, lost=$own_lost, unknown=$own_unknown, failure=$own_failure, list=$own_list))";
+ return @"EncryptState (encrypted=$encrypted, other=(devices=$other_devices, success=$other_success, lost=$other_lost, unknown=$other_unknown, failure=$other_failure, waiting_lists=$other_waiting_lists, own=(devices=$own_devices, success=$own_success, lost=$own_lost, unknown=$own_unknown, failure=$own_failure, list=$own_list))";
}
}
-} \ No newline at end of file
+}