summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2024-06-27 14:36:43 +0200
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2024-06-28 09:35:41 +0200
commit8ae1e73b6fabd715794eff4738f3127043a2a54e (patch)
tree5bc8d3bf80f1c072d0ca3acb44512a6292dee17e /src
parentff3b24ad722adc8d94a8f218f1a571ecb5a0da63 (diff)
feat: Show active/inactive state of federated participants
Before there was no session for federated participants, so it was not possible to know if a federated participant was active or not in the conversation. Now that federated participants join and leave the room with a session it is possible to show them as active or not in the room. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/Participants/Participant.vue1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/RightSidebar/Participants/Participant.vue b/src/components/RightSidebar/Participants/Participant.vue
index 921258c3c..b77e12f9b 100644
--- a/src/components/RightSidebar/Participants/Participant.vue
+++ b/src/components/RightSidebar/Participants/Participant.vue
@@ -781,7 +781,6 @@ export default {
isOffline() {
return !this.sessionIds.length && !this.isSearched
&& (this.isUserActor || this.isFederatedActor || this.isGuestActor)
- && (!hasTalkFeature(this.token, 'federation-v1') || (!this.conversation.remoteServer && !this.isFederatedActor))
},
isGuest() {