Mark groups left on synced "You left the group"

When leaving a group on mobile, we sync the group quit message to desktop, but
we weren't marking the conversation left.

// FREEBIE
This commit is contained in:
lilia 2017-05-12 14:56:16 -07:00 committed by Lilia
parent 517400699a
commit 80bfe18f02

View file

@ -366,6 +366,7 @@
}
else if (dataMessage.group.type === textsecure.protobuf.GroupContext.Type.QUIT) {
if (source == textsecure.storage.user.getNumber()) {
attributes.left = true;
group_update = { left: "You" };
} else {
group_update = { left: source };