mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Clear user lists when (re)connecting
Also remove a debug log parsing user lists
This commit is contained in:
parent
e092188f80
commit
15da80978d
1 changed files with 1 additions and 1 deletions
|
@ -774,6 +774,7 @@ while True:
|
||||||
last_ping_time = time.time()
|
last_ping_time = time.time()
|
||||||
|
|
||||||
if data.find ( 'Welcome to the freenode Internet Relay Chat Network' ) != -1:
|
if data.find ( 'Welcome to the freenode Internet Relay Chat Network' ) != -1:
|
||||||
|
userstable = dict()
|
||||||
SendTo("nickserv", "IDENTIFY %s" % GetPassword())
|
SendTo("nickserv", "IDENTIFY %s" % GetPassword())
|
||||||
Join(irc_homechan)
|
Join(irc_homechan)
|
||||||
#ScanWho(None,[irc_homechan])
|
#ScanWho(None,[irc_homechan])
|
||||||
|
@ -866,7 +867,6 @@ while True:
|
||||||
|
|
||||||
elif action == '353':
|
elif action == '353':
|
||||||
try:
|
try:
|
||||||
log_log("parts: %s" % str(parts))
|
|
||||||
who_chan = parts[4]
|
who_chan = parts[4]
|
||||||
who_chan_users = cparts[2].split(" ")
|
who_chan_users = cparts[2].split(" ")
|
||||||
for who_chan_user in who_chan_users:
|
for who_chan_user in who_chan_users:
|
||||||
|
|
Loading…
Reference in a new issue