mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
minor fix for syncing groups
This commit is contained in:
parent
aaf991409c
commit
c89e1f8fa7
2 changed files with 5 additions and 0 deletions
|
@ -172,6 +172,10 @@ NSString *envelopeAddress(SSKProtoEnvelope *envelope)
|
|||
[description appendString:verifiedString];
|
||||
} else if (syncMessage.contacts) {
|
||||
[description appendString:@"Contacts"];
|
||||
} else if (syncMessage.groups) {
|
||||
[description appendString:@"ClosedGroups"];
|
||||
} else if (syncMessage.openGroups) {
|
||||
[description appendString:@"OpenGroups"];
|
||||
} else {
|
||||
[description appendString:@"Unknown"];
|
||||
}
|
||||
|
|
|
@ -4348,6 +4348,7 @@ extension SignalServiceProtos_SyncMessage: SwiftProtobuf.Message, SwiftProtobuf.
|
|||
7: .same(proto: "verified"),
|
||||
9: .same(proto: "configuration"),
|
||||
8: .same(proto: "padding"),
|
||||
100: .same(proto: "openGroups"),
|
||||
]
|
||||
|
||||
fileprivate class _StorageClass {
|
||||
|
|
Loading…
Reference in a new issue