mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
Update controller.ts
This commit is contained in:
parent
3ed6148f6a
commit
7df4b729e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue