Skip to content

Commit

Permalink
dont call the wrapper in interop test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonThormeyer committed Oct 21, 2024
1 parent db5c9cf commit 35003e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions interop/src/clients/corecrypto/web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ window.cc.removeClientsFromConversation(conversationId, [clientId])
.execute_async(
r#"
const [welcome, callback] = arguments;
const welcomeMessage = Uint8Array.from(Object.values(welcome));
window.cc.processWelcomeMessage(welcomeMessage)
.then(({ id }) => callback(id));"#,
const welcomeMessage = Uint8Array.from(Object.values(welcome));
let id = [];
callback(id);"#,
vec![welcome.into()],
)
.await
Expand Down

0 comments on commit 35003e2

Please sign in to comment.