fix: increase timeout to 3 seconds

This commit is contained in:
Derrick Hammer 2023-07-12 07:25:53 -04:00
parent 1ddcf5be81
commit 780573aa7d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -72,6 +72,6 @@ export default async (
setTimeout(() => {
client.end();
reject("irc discovery response timed out");
}, 1000);
}, 3000);
});
};