I openned two connections ``` var bot = new IRC.Client(); var bot2 = new IRC.Client(); bot.connect{...} bot2.connect(...) ``` After `bot.quit()` bot2 also loses connection. How to fix it?
I openned two connections
After
bot.quit()bot2 also loses connection. How to fix it?