frontend: update participant role notification handling in MeetingEventHandlerService

This commit is contained in:
CSantosM 2026-03-04 16:05:13 +01:00
parent 1761517afc
commit d025a35e15

View File

@ -97,7 +97,6 @@ export class MeetingEventHandlerService {
case MeetSignalType.MEET_PARTICIPANT_ROLE_UPDATED:
await this.handleParticipantRoleUpdated(event);
this.showParticipantRoleUpdatedNotification(event);
break;
}
} catch (error) {
@ -278,7 +277,7 @@ export class MeetingEventHandlerService {
// Update local participant role
local.meetRole = newRole;
console.log(`You have been assigned the role of ${newRole}`);
this.showParticipantRoleUpdatedNotification(event);
// Increment version to trigger reactivity
this.meetingContext.incrementParticipantsVersion();