Skip to content

Commit b23dcd1

Browse files
committed
fix(chat): register event handler for guests properly
1 parent 00ea80e commit b23dcd1

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

frontend/src/pages/Meeting.vue

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,10 @@ onMounted(async () => {
699699
}
700700
}
701701
702+
setupChatEvents(chatNotificationQueue.value);
703+
setupReactionEvents();
704+
setupRaiseHandEvents();
705+
702706
// Check authentication and handle guest sessions
703707
if (!session.isLoggedIn) {
704708
await initializeCamera();
@@ -724,15 +728,6 @@ onMounted(async () => {
724728
await applySpeakerDevice();
725729
}
726730
727-
// Setup chat events
728-
setupChatEvents(chatNotificationQueue.value);
729-
730-
// Setup reaction events
731-
setupReactionEvents();
732-
733-
// Setup raise hand events
734-
setupRaiseHandEvents();
735-
736731
// Auto-join if just created
737732
const wasJustCreated = route.query.created === "true";
738733
if (wasJustCreated) {

0 commit comments

Comments
 (0)