Don't use event.sender
Pull in a js-sdk change to avoid using event.sender (see js-sdk PR for details). Fixes https://github.com/vector-im/element-call/issues/1697
This commit is contained in:
@@ -110,7 +110,7 @@ export function GroupCallView({
|
||||
|
||||
// Count each member only once, regardless of how many devices they use
|
||||
const participantCount = useMemo(
|
||||
() => new Set<string>(memberships.map((m) => m.member.userId)).size,
|
||||
() => new Set<string>(memberships.map((m) => m.sender!)).size,
|
||||
[memberships]
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user