@@ -127,12 +127,6 @@ export class StopGapWidgetDriver extends WidgetDriver {
127127 this . allowedCapabilities . add ( MatrixCapabilities . MSC4157SendDelayedEvent ) ;
128128 this . allowedCapabilities . add ( MatrixCapabilities . MSC4157UpdateDelayedEvent ) ;
129129
130- this . allowedCapabilities . add (
131- WidgetEventCapability . forRoomEvent ( EventDirection . Send , "org.matrix.rageshake_request" ) . raw ,
132- ) ;
133- this . allowedCapabilities . add (
134- WidgetEventCapability . forRoomEvent ( EventDirection . Receive , "org.matrix.rageshake_request" ) . raw ,
135- ) ;
136130 this . allowedCapabilities . add (
137131 WidgetEventCapability . forStateEvent ( EventDirection . Receive , EventType . RoomMember ) . raw ,
138132 ) ;
@@ -175,7 +169,13 @@ export class StopGapWidgetDriver extends WidgetDriver {
175169 WidgetEventCapability . forStateEvent ( EventDirection . Receive , EventType . RoomCreate ) . raw ,
176170 ) ;
177171
178- const sendRecvRoomEvents = [ "io.element.call.encryption_keys" , EventType . Reaction , EventType . RoomRedaction ] ;
172+ const sendRecvRoomEvents = [
173+ "io.element.call.encryption_keys" ,
174+ "org.matrix.rageshake_request" ,
175+ EventType . Reaction ,
176+ EventType . RoomRedaction ,
177+ "io.element.call.reaction" ,
178+ ] ;
179179 for ( const eventType of sendRecvRoomEvents ) {
180180 this . allowedCapabilities . add ( WidgetEventCapability . forRoomEvent ( EventDirection . Send , eventType ) . raw ) ;
181181 this . allowedCapabilities . add ( WidgetEventCapability . forRoomEvent ( EventDirection . Receive , eventType ) . raw ) ;
0 commit comments