lrstanley / girc

:bomb: girc is a flexible IRC library for Go :ok_hand:
https://pkg.go.dev/github.com/lrstanley/girc
MIT License
138 stars 13 forks source link

Allow ^ in nick #9

Closed 42wim closed 6 years ago

42wim commented 6 years ago

Nicknames with ^ in it stopped working. (https://github.com/42wim/matterbridge/issues/305)

lrstanley commented 6 years ago

Reverted this change after looking further, that this is actually due to another bug unrelated to the "^" character specifically. This fix isn't necessarily the correct, as it allows other unwanted characters to be 'allowed'. Working on a fix now.

lrstanley commented 6 years ago

fixed in https://github.com/lrstanley/girc/commit/3fe51b12b75a367da764ffbd670373ecd7aca997; @42wim

42wim commented 6 years ago

thanks