Skip to content

Commit 5fa845b

Browse files
authored
fix: reactions disabled when editing room (#6969)
1 parent 97008fe commit 5fa845b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/views/RoomInfoEditView/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const RoomInfoEditView = ({ navigation, route }: IRoomInfoEditViewProps) => {
171171
params.readOnly = readOnly;
172172
}
173173
// React When Read Only
174-
if (room.reactWhenReadOnly !== reactWhenReadOnly) {
174+
if ((room.reactWhenReadOnly || false) !== reactWhenReadOnly) {
175175
params.reactWhenReadOnly = reactWhenReadOnly;
176176
}
177177

0 commit comments

Comments
 (0)