Skip to content

Commit

Permalink
fix: request room e2ee key not working properly (#5607)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolmello authored Mar 7, 2024
1 parent 3b61770 commit 29421c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/services/restApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const e2eUpdateGroupKey = (uid: string, rid: string, key: string): any =>

export const e2eRequestRoomKey = (rid: string, e2eKeyId: string): Promise<{ message: { msg?: string }; success: boolean }> =>
// RC 0.70.0
sdk.methodCallWrapper('stream-notify-room-users', `${rid}/e2ekeyRequest`, rid, e2eKeyId);
sdk.methodCall('stream-notify-room-users', `${rid}/e2ekeyRequest`, rid, e2eKeyId);

export const e2eAcceptSuggestedGroupKey = (rid: string): Promise<{ success: boolean }> =>
// RC 5.5
Expand Down

0 comments on commit 29421c9

Please sign in to comment.