fix wrong var name
This commit is contained in:
parent
b1bb085e55
commit
eb0edc36fd
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class Logger:
|
||||||
|
|
||||||
def jid_is_room_jid(self, jid):
|
def jid_is_room_jid(self, jid):
|
||||||
self.cur.execute('SELECT jid_id FROM jids WHERE jid=? AND type=?',
|
self.cur.execute('SELECT jid_id FROM jids WHERE jid=? AND type=?',
|
||||||
(possible_room_jid, constants.JID_ROOM_TYPE))
|
(jid, constants.JID_ROOM_TYPE))
|
||||||
row = self.cur.fetchone()
|
row = self.cur.fetchone()
|
||||||
if row is None:
|
if row is None:
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Add table
Reference in a new issue