mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-13 14:05:35 +02:00
Update controller.ts
This commit is contained in:
@@ -144,7 +144,7 @@ export class RoomController {
|
||||
|
||||
engineEvents.on('changeRoomState', ({ roomState }) => {
|
||||
if (deepEqual(this.roomState.value, roomState)) return; // vueのリアクティビティが反応して無限ループになることがあるため
|
||||
this.roomState.value = roomState;
|
||||
this.roomState.value = JSON.parse(JSON.stringify(roomState));
|
||||
triggerRef(this.selected);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user