diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-12 08:42:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 08:42:03 -0400 |
commit | 86cf6a3a17376dd83a9222f77521d1619b528d66 (patch) | |
tree | 3552f7be218aa0079d3a6edaddf4614566f1d25c /synapse/storage/databases/main/events.py | |
parent | Add some type hints to datastore (#12423) (diff) | |
download | synapse-86cf6a3a17376dd83a9222f77521d1619b528d66.tar.xz |
Remove references to unstable identifiers from MSC3440. (#12382)
Removes references to unstable thread relation, unstable identifiers for filtering parameters, and the experimental config flag.
Diffstat (limited to 'synapse/storage/databases/main/events.py')
-rw-r--r-- | synapse/storage/databases/main/events.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/storage/databases/main/events.py b/synapse/storage/databases/main/events.py index 3fcd5f5b99..e3be537cee 100644 --- a/synapse/storage/databases/main/events.py +++ b/synapse/storage/databases/main/events.py @@ -1819,10 +1819,7 @@ class PersistEventsStore: if rel_type == RelationTypes.REPLACE: txn.call_after(self.store.get_applicable_edit.invalidate, (parent_id,)) - if ( - rel_type == RelationTypes.THREAD - or rel_type == RelationTypes.UNSTABLE_THREAD - ): + if rel_type == RelationTypes.THREAD: txn.call_after(self.store.get_thread_summary.invalidate, (parent_id,)) # It should be safe to only invalidate the cache if the user has not # previously participated in the thread, but that's difficult (and |