Bug fix: Don't register user mode changes in memos

This commit is contained in:
Kiooeht 2011-06-07 02:17:47 -07:00
parent e7919869c1
commit 3798d04e1e

View file

@ -962,7 +962,7 @@ class PesterMemo(PesterConvo):
icon = QtGui.QIcon()
c.setIcon(icon)
self.sortUsers()
elif h == "" and update[0] in ["+","-"]:
elif c == self.channel and update[0] in ["+","-"]:
self.updateChanModes(update)
@QtCore.pyqtSlot()