chore: don't show overlay for redacted messages (#2052)

This commit is contained in:
ggurdin 2025-03-05 16:13:43 -05:00 committed by GitHub
parent 365b7f0a12
commit c4ffde496c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1792,6 +1792,8 @@ class ChatController extends State<ChatPageWithRoom>
Event? nextEvent,
Event? prevEvent,
}) {
if (event.redacted) return;
// Close keyboard, if open
if (inputFocus.hasFocus && PlatformInfos.isMobile) {
inputFocus.unfocus();