Skip to content

Commit

Permalink
fixup! feat(talk): Make event attendees Talk room participants
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst committed Aug 4, 2023
1 parent fe8c6ab commit 847504c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/talkService.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export async function updateTalkParticipants(eventComponent) {

for (const attendee of eventComponent.getAttendeeIterator()) {
logger.debug('Processing attendee', { attendee })
if (['RESOURCE', 'ROOM'].includes(attendee.userType)) {
if (['GROUP', 'RESOURCE', 'ROOM'].includes(attendee.userType)) {
continue

Check warning on line 91 in src/services/talkService.js

View check run for this annotation

Codecov / codecov/patch

src/services/talkService.js#L88-L91

Added lines #L88 - L91 were not covered by tests
}

Expand Down

0 comments on commit 847504c

Please sign in to comment.