fix bug in presence handling
This commit is contained in:
parent
9d471b2c5b
commit
8103f172b5
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class IdleBot(slixmpp.ClientXMPP):
|
||||||
self.join_room(room)
|
self.join_room(room)
|
||||||
else:
|
else:
|
||||||
if nick in self.room_roster[room]:
|
if nick in self.room_roster[room]:
|
||||||
sel.room_roster[room].remove(nick)
|
self.room_roster[room].remove(nick)
|
||||||
logging.debug('Roster: {}'.format(self.room_roster))
|
logging.debug('Roster: {}'.format(self.room_roster))
|
||||||
|
|
||||||
def reconnect(self, event):
|
def reconnect(self, event):
|
||||||
|
|
Loading…
Reference in a new issue