Skip to content
Snippets Groups Projects
Commit 4a9dc5b2 authored by Erik Johnston's avatar Erik Johnston
Browse files

pushkey' are also bytes.

parent 0ade2712
No related branches found
No related tags found
No related merge requests found
......@@ -29,15 +29,22 @@ logger = logging.getLogger(__name__)
class PusherStore(SQLBaseStore):
@defer.inlineCallbacks
def get_pushers_by_app_id_and_pushkey(self, app_id, pushkey):
sql = (
"SELECT * FROM pushers "
"WHERE app_id = ? AND pushkey = ?"
)
def r(txn):
sql = (
"SELECT * FROM pushers"
" WHERE app_id = ? AND pushkey = ?"
)
rows = yield self._execute_and_decode(
"get_pushers_by_app_id_and_pushkey",
sql,
app_id, pushkey
txn.execute(sql, (app_id, pushkey,))
rows = self.cursor_to_dict(txn)
for r in rows:
r['pushkey'] = str(r['pushkey']).decode("UTF8")
return rows
rows = yield self.runInteraction(
"get_pushers_by_app_id_and_pushkey", r
)
defer.returnValue(rows)
......@@ -60,6 +67,8 @@ class PusherStore(SQLBaseStore):
)
pass
r['pushkey'] = str(r['pushkey']).decode("UTF8")
return rows
rows = yield self.runInteraction("get_all_pushers", get_pushers)
......
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