Fix control message issues on leaving group (#904)

pull/1709/head
SessionHero01 2 months ago committed by GitHub
parent ac6bb541da
commit 0dc8aa1410
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -213,12 +213,6 @@ class ControlMessageView : LinearLayout {
}
}
}
message.isGroupUpdateMessage -> {
val updateMessageData: UpdateMessageData? = UpdateMessageData.fromJSON(message.body)
if (updateMessageData?.isGroupErrorQuitKind() == true) {
binding.textView.setTextColor(context.getColorFromAttr(R.attr.danger))
}
}
}
binding.textView.isGone = message.isCallLog

@ -501,6 +501,8 @@ class GroupManagerV2Impl @Inject constructor(
} catch (e: Exception) {
storage.insertGroupInfoErrorQuit(groupId)
throw e
} finally {
storage.deleteGroupInfoMessages(groupId, UpdateMessageData.Kind.GroupLeaving::class.java)
}
}
}

Loading…
Cancel
Save