diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-01-07 15:22:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 15:22:07 +0100 |
commit | 0ab5853ec93a75622e847aaf24efa91ae0037301 (patch) | |
tree | 1ee2eb0b109ebf1448579ad04478a08e5f5a2478 /synapse/storage | |
parent | Add a background update to clear tombstoned rooms from the directory (#6648) (diff) | |
parent | Changelog (diff) | |
download | synapse-0ab5853ec93a75622e847aaf24efa91ae0037301.tar.xz |
Merge pull request #6652 from matrix-org/babolivier/depth_missing_events
Fix conditions failing if min_depth = 0
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/data_stores/main/event_federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/event_federation.py b/synapse/storage/data_stores/main/event_federation.py index 5cb8cd96d1..60c67457b4 100644 --- a/synapse/storage/data_stores/main/event_federation.py +++ b/synapse/storage/data_stores/main/event_federation.py @@ -470,7 +470,7 @@ class EventFederationStore(EventFederationWorkerStore): def _update_min_depth_for_room_txn(self, txn, room_id, depth): min_depth = self._get_min_depth_interaction(txn, room_id) - if min_depth and depth >= min_depth: + if min_depth is not None and depth >= min_depth: return self.db.simple_upsert_txn( |