From e965385841bed0c20eadaebf3ea00dcde62a0da0 Mon Sep 17 00:00:00 2001 From: Rajeh Taher Date: Fri, 26 Sep 2025 05:25:16 +0300 Subject: [PATCH] utils: update exports --- src/Utils/auth-utils.ts | 2 +- src/Utils/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Utils/auth-utils.ts b/src/Utils/auth-utils.ts index cac70cd4..e6eaf279 100644 --- a/src/Utils/auth-utils.ts +++ b/src/Utils/auth-utils.ts @@ -48,7 +48,7 @@ export function makeCacheableSignalKeyStore( const data: { [_: string]: SignalDataTypeMap[typeof type] } = {} const idsToFetch: string[] = [] for (const id of ids) { - const item = await cache.get(getUniqueId(type, id)) as any + const item = (await cache.get(getUniqueId(type, id))) as any if (typeof item !== 'undefined') { data[id] = item } else { diff --git a/src/Utils/index.ts b/src/Utils/index.ts index d8bd0627..3b86b59e 100644 --- a/src/Utils/index.ts +++ b/src/Utils/index.ts @@ -16,3 +16,5 @@ export * from './link-preview' export * from './event-buffer' export * from './process-message' export * from './message-retry-manager' +export * from './browser-utils' +export * from './proto-utils'