diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-10 10:21:32 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-10 10:21:32 +0000 |
commit | 1c06806f90a6368cdc3b9fa3b9053021b7c40e94 (patch) | |
tree | f9ed0b424cc37a7ea4e993ff774308c4e371549b /synapse/storage/_base.py | |
parent | Use current state to get room hosts, rather than querying the database (diff) | |
download | synapse-1c06806f90a6368cdc3b9fa3b9053021b7c40e94.tar.xz |
Finish redaction algorithm.
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 9aa404695d..3ab81a78d5 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -509,7 +509,7 @@ class SQLBaseStore(object): ) if del_evs: - prune_event(ev) + ev = prune_event(ev) ev.redacted_because = del_evs[0] return events |