From 940972db2f927a6a69c399ed1f155097d70e794b Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 6 Apr 2022 11:14:16 +1000 Subject: [PATCH] fix libsodium call from webworker --- ts/node/sodiumNode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/node/sodiumNode.ts b/ts/node/sodiumNode.ts index ecfec039b..696115403 100644 --- a/ts/node/sodiumNode.ts +++ b/ts/node/sodiumNode.ts @@ -4,5 +4,5 @@ export async function getSodiumNode() { // don't ask me why, but when called from node we have to do this as the types are incorrect?! const anyWrappers = wrappers as any; await anyWrappers.ready; - return anyWrappers; + return anyWrappers.default; }