summaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-06-07 16:22:12 +0200
committerJoas Schilling <coding@schilljs.com>2021-06-07 16:22:12 +0200
commit786cd9c79edbf78044aec21186d561617fd7c48d (patch)
treed018e7e8bd7b81eb1936509aceb6e32a1986f4a0 /src/components
parent30c0529b59ddf78372b075a501654067200dbea2 (diff)
Inviting users appear offline
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 64584af47..7f90ae321 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -392,9 +392,9 @@ export default {
/**
* For now the user status is not overwriting the online-offline status anymore
* It felt too weird having users appear as offline but they are in the call or chat actively
- return this.participant.status === 'offline' || !this.sessionIds.length
+ return this.participant.status === 'offline' || !this.sessionIds.length && !this.isSearched
*/
- return !this.sessionIds.length
+ return !this.sessionIds.length && !this.isSearched
},
isGuest() {
return [PARTICIPANT.TYPE.GUEST, PARTICIPANT.TYPE.GUEST_MODERATOR].indexOf(this.participantType) !== -1