From 2fa800e4d6d83cd8bc64a2b11aeb7606bfe11b92 Mon Sep 17 00:00:00 2001 From: litruv Date: Sun, 23 Aug 2026 16:18:54 +1000 Subject: [PATCH] Fix useOtherUserColor crash when sender has an avatar MXC URL. Pass the Matrix room to useOtherUserColor in overlay Message.tsx instead of senderAvatarMxc, and bump cinny for Android About/updates fixes. --- overlay/src/app/features/room/message/Message.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/src/app/features/room/message/Message.tsx b/overlay/src/app/features/room/message/Message.tsx index c1fa440..d71362d 100644 --- a/overlay/src/app/features/room/message/Message.tsx +++ b/overlay/src/app/features/room/message/Message.tsx @@ -785,7 +785,7 @@ export const Message = as<'div', MessageProps>( const senderAvatarMxc = getMemberAvatarMxc(room, senderId); // Get custom user color from avatar metadata (takes priority) - const customUserColor = useOtherUserColor(senderId, senderAvatarMxc); + const customUserColor = useOtherUserColor(senderId, room); const tagColor = memberPowerTag?.color ? accessibleTagColors?.get(memberPowerTag.color)