Skip to content
Snippets Groups Projects
Commit 2640d671 authored by David Baker's avatar David Baker
Browse files

Merge pull request #145 from matrix-org/hotfixes-v0.9.0-r3

Hotfixes v0.9.0 r3
parents d79ffa18 de875418
No related branches found
No related tags found
No related merge requests found
......@@ -16,4 +16,4 @@
""" This is a reference implementation of a Matrix home server.
"""
__version__ = "0.9.0-r2"
__version__ = "0.9.0-r3"
......@@ -211,7 +211,7 @@ class PushRuleStore(SQLBaseStore):
yield self._simple_upsert(
PushRuleEnableTable.table_name,
{'user_name': user_name, 'rule_id': rule_id},
{'enabled': enabled},
{'enabled': 1 if enabled else 0},
desc="set_push_rule_enabled",
)
......
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