1
0
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:
syuilo
2026-05-01 11:36:30 +09:00
parent 3ed6148f6a
commit 7df4b729e9

View File

@@ -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);
});