*Update dist

This commit is contained in:
Derrick Hammer 2023-04-08 15:02:22 -04:00
parent 35c67e1c92
commit 7386b6de05
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

2
dist/util.js vendored
View File

@ -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;
}