Bug fix: Don't request all moods when opening all user list
This commit is contained in:
parent
7faaea5893
commit
cf0d4e96f1
1 changed files with 2 additions and 1 deletions
3
irc.py
3
irc.py
|
@ -421,7 +421,8 @@ class PesterHandler(DefaultCommandHandler):
|
||||||
pl = PesterList(namelist)
|
pl = PesterList(namelist)
|
||||||
del self.channelnames[channel]
|
del self.channelnames[channel]
|
||||||
self.parent.namesReceived.emit(channel, pl)
|
self.parent.namesReceived.emit(channel, pl)
|
||||||
if channel == "#pesterchum":
|
if channel == "#pesterchum" and not hasattr(self, "joined"):
|
||||||
|
self.joined = True
|
||||||
chums = self.mainwindow.chumList.chums
|
chums = self.mainwindow.chumList.chums
|
||||||
lesschums = []
|
lesschums = []
|
||||||
for c in chums:
|
for c in chums:
|
||||||
|
|
Loading…
Reference in a new issue