Skip to content

1.0.1

Latest
Compare
Choose a tag to compare
@codyd51 codyd51 released this 06 Apr 08:39
· 5 commits to main since this release

Fixes #1 with 5110b04.

The issue here was that I was assuming IRC messages always have a leading colon at the start of the trailing message, like so:

:coulomb.oftc.net MODE #zzzz13 :+nt

As it turns out, the leading colon is optional based on whether it's necessary to disambiguate the message, so the server can send this instead:

:coulomb.oftc.net MODE #zzzz13 +nt

This release selectively parses the leading colon if it's present in the message, instead of requiring it to be present.