From 7386b6de0550de0427ea0067eb457c5eb9159edf Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 8 Apr 2023 15:02:22 -0400 Subject: [PATCH] *Update dist --- dist/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/util.js b/dist/util.js index 6178477..483a14a 100644 --- a/dist/util.js +++ b/dist/util.js @@ -82,7 +82,7 @@ export function createHash(data) { } export async function setupStream(stream) { const existing = stream[RPC_PROTOCOL_SYMBOL]; - if (!existing) { + if (existing) { await existing._channel.ready; return existing; }