diff options
author | Kegan Dougal <kegan@matrix.org> | 2016-11-21 17:52:45 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2016-11-21 17:52:45 +0000 |
commit | 70a2157b6458369b374cceeb0e5c8b0d985c6946 (patch) | |
tree | 3994e3d3b70069f3d887153a2eb4dfe011838ddf /synapse/events | |
parent | Move event_fields filtering to serialize_event (diff) | |
download | synapse-70a2157b6458369b374cceeb0e5c8b0d985c6946.tar.xz |
Start adding some tests
Diffstat (limited to 'synapse/events')
-rw-r--r-- | synapse/events/utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/events/utils.py b/synapse/events/utils.py index 4febd98f43..a14d9bd0ca 100644 --- a/synapse/events/utils.py +++ b/synapse/events/utils.py @@ -16,6 +16,8 @@ from synapse.api.constants import EventTypes from . import EventBase +from frozendict import frozendict + import re # Split strings on "." but not "\." This uses a negative lookbehind assertion for '\' @@ -130,7 +132,7 @@ def _copy_field(src, dst, field): key_to_move = field.pop(-1) sub_dict = src for sub_field in field: # e.g. sub_field => "content" - if sub_field in sub_dict and type(sub_dict[sub_field]) == dict: + if sub_field in sub_dict and type(sub_dict[sub_field]) == frozendict: sub_dict = sub_dict[sub_field] else: return |