mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
irc: remove + (voice) prefix from nicks
This commit is contained in:
parent
0d7979fc3f
commit
a7ac4f8b1c
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ class IRCNetwork(Network):
|
|||
log_info('who_chan_users: %s' % str(who_chan_users))
|
||||
for who_chan_user in who_chan_users:
|
||||
if not who_chan_user in self.userstable[who_chan]:
|
||||
if who_chan_user[0] == "@":
|
||||
if who_chan_user[0] in ["@","+"]:
|
||||
who_chan_user = who_chan_user[1:]
|
||||
self.userstable[who_chan][who_chan_user] = None
|
||||
log_log("New list of users in %s: %s" % (who_chan, str(self.userstable[who_chan].keys())))
|
||||
|
|
Loading…
Reference in a new issue