diff --git a/react/features/invite/components/add-people-dialog/web/InviteContactsForm.js b/react/features/invite/components/add-people-dialog/web/InviteContactsForm.js index 43f8af9ea..3dc61f9a2 100644 --- a/react/features/invite/components/add-people-dialog/web/InviteContactsForm.js +++ b/react/features/invite/components/add-people-dialog/web/InviteContactsForm.js @@ -315,7 +315,9 @@ class InviteContactsForm extends AbstractAddPeopleDialog { */ _parseQueryResults(response = []) { const { t, _dialOutEnabled } = this.props; - const users = response.filter(item => item.type === INVITE_TYPES.USER); + + const userTypes = [ INVITE_TYPES.USER, INVITE_TYPES.VIDEO_ROOM, INVITE_TYPES.ROOM ]; + const users = response.filter(item => userTypes.includes(item.type)); const userDisplayItems = []; for (const user of users) {