Bug fix: Don't request all moods when opening all user list

This commit is contained in:
Kiooeht 2011-06-13 08:13:56 -07:00
parent 7faaea5893
commit cf0d4e96f1

3
irc.py
View file

@ -421,7 +421,8 @@ class PesterHandler(DefaultCommandHandler):
pl = PesterList(namelist)
del self.channelnames[channel]
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
lesschums = []
for c in chums: