irc: Fix when nick is the current in NICK command
patch 1e24fbe344b94c6bd9a5d5cc75250227c80da5ee
Author: E. Bosch <presidev@AT@gmail.com>
Date: Fri Feb 4 19:18:34 CET 2022
* irc: Fix when nick is the current in NICK command
hunk ./irc.py 153
+ current = user.irc_nick.lower() if user.irc_nick else None
+ if ni == current:
+ return
hunk ./irc.py 164
- current = user.irc_nick.lower()