From 780573aa7d025590dfc8dbedf9aa380d4888bc8a Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 12 Jul 2023 07:25:53 -0400 Subject: [PATCH] fix: increase timeout to 3 seconds --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 9520b09..09fb25a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -72,6 +72,6 @@ export default async ( setTimeout(() => { client.end(); reject("irc discovery response timed out"); - }, 1000); + }, 3000); }); };