From 2173705ed5bed37e117d80ec7f96c8e557ea23b3 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 20 Oct 2023 21:21:27 +0100 Subject: [PATCH] Rename the per-participant e2ee keys event (#11783) From the department of single-byte PRs. I reanmed this in the branch because it now contains multiple keys. --- src/stores/widgets/StopGapWidgetDriver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/widgets/StopGapWidgetDriver.ts b/src/stores/widgets/StopGapWidgetDriver.ts index 6c87cb4337..c2453ebccf 100644 --- a/src/stores/widgets/StopGapWidgetDriver.ts +++ b/src/stores/widgets/StopGapWidgetDriver.ts @@ -150,7 +150,7 @@ export class StopGapWidgetDriver extends WidgetDriver { WidgetEventCapability.forStateEvent(EventDirection.Receive, "org.matrix.msc3401.call.member").raw, ); - const sendRecvRoomEvents = ["io.element.call.encryption_key"]; + const sendRecvRoomEvents = ["io.element.call.encryption_keys"]; for (const eventType of sendRecvRoomEvents) { this.allowedCapabilities.add(WidgetEventCapability.forRoomEvent(EventDirection.Send, eventType).raw); this.allowedCapabilities.add(WidgetEventCapability.forRoomEvent(EventDirection.Receive, eventType).raw);