edmund-huber / ergonomadic

DISCONTINUED, see orogono
MIT License
132 stars 10 forks source link

/topic causes mIRC client to disconnect from server #23

Closed nxths closed 8 years ago

nxths commented 9 years ago

Issuing a /topic command in mIRC 7.43 causes my client to disconnect and then reconnect to the connected server after 10-20s. Not sure if my client is receiving any messages from the server inbetween the /topic and the disconnect

nxths commented 8 years ago

Hmm interestingly attempting to change the topic (/topic foo) causes the server to send back the topic as though I passed in the command w/ no argument (/topic)

DanielOaks commented 8 years ago

This is caused because /topic sends just TOPIC to the server, which is a malformed command. That causes the server to stop accepting any commands from the client (including PING/PONG), which is what's causing this issue. Fixed by #32

nxths commented 8 years ago

Oh nice thanks for figuring this out + fix