diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-06-10 20:32:01 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2020-06-10 20:32:01 +0100 |
commit | df3323a7cfe831813c00df32c85b983587f8529e (patch) | |
tree | b88c6f1e01e19890fef9ef69e471ddc7fd864c4b /synapse/storage | |
parent | Changelog (diff) | |
download | synapse-df3323a7cfe831813c00df32c85b983587f8529e.tar.xz |
Use temporary prefixes as per the MSC
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/data_stores/main/event_push_actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/event_push_actions.py b/synapse/storage/data_stores/main/event_push_actions.py index 7ba741cce0..52dcc7be47 100644 --- a/synapse/storage/data_stores/main/event_push_actions.py +++ b/synapse/storage/data_stores/main/event_push_actions.py @@ -454,7 +454,7 @@ class EventPushActionsWorkerStore(SQLBaseStore): # can be used to insert into the `event_push_actions_staging` table. def _gen_entry(user_id, actions): is_highlight = 1 if _action_has_highlight(actions) else 0 - notif = 0 if "mark_unread" in actions else 1 + notif = 0 if "org.matrix.msc2625.mark_unread" in actions else 1 return ( event_id, # event_id column user_id, # user_id column |