Skip to content
Snippets Groups Projects
Commit eb0edc36 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix wrong var name

parent b1bb085e
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ class Logger:
def jid_is_room_jid(self, jid):
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()
if row is None:
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment