phergie / phergie-irc-client-react

IRC client library built on React
BSD 3-Clause "New" or "Revised" License
56 stars 26 forks source link

How to disconnect an active connection? #47

Closed fieg closed 9 years ago

fieg commented 9 years ago

There is of course the addConnection, but no removeConnection or something similar. So how can one disconnect from an irc server?

elazar commented 9 years ago

Call ircQuit() on the $write parameter sent to the event callback.

fieg commented 9 years ago

Just found PhergieKeepAlive where they indeed do ircQuit. Felt a bit weird to me at first, as it seems a lot more logical to me to call some method on the client to disconnect. But if it works, it's good enough for me :+1:

Thanks for the quick response.