summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-16 11:35:31 +0000
committerErik Johnston <erik@matrix.org>2018-02-16 11:35:31 +0000
commit6af025d3c4c19ab8a6f90b667b8c4259606ba47a (patch)
tree2fc05e9438db06f200bee80be9b4d4fff67d5ff1
parentComments (diff)
downloadsynapse-6af025d3c4c19ab8a6f90b667b8c4259606ba47a.tar.xz
Fix typo of double is_highlight
-rw-r--r--synapse/storage/event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py
index ea56d4d065..f787431b7a 100644
--- a/synapse/storage/event_push_actions.py
+++ b/synapse/storage/event_push_actions.py
@@ -769,7 +769,7 @@ class EventPushActionsStore(SQLBaseStore):
             Deferred
         """
 
-        is_highlight = is_highlight = 1 if _action_has_highlight(actions) else 0
+        is_highlight = 1 if _action_has_highlight(actions) else 0
 
         return self._simple_insert(
             table="event_push_actions_staging",