diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-10-30 16:15:04 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-10-30 16:15:04 +0000 |
commit | e7943f660add8b602ea5225060bd0d74e6440017 (patch) | |
tree | b6f85567bc2a4b89ea046fb1d1207bd0516b66f6 /synapse/api | |
parent | Add index on label (diff) | |
download | synapse-e7943f660add8b602ea5225060bd0d74e6440017.tar.xz |
Add unit tests
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/filtering.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/filtering.py b/synapse/api/filtering.py index a27029c678..bd91b9f018 100644 --- a/synapse/api/filtering.py +++ b/synapse/api/filtering.py @@ -307,7 +307,7 @@ class Filter(object): content = event.get("content", {}) # check if there is a string url field in the content for filtering purposes contains_url = isinstance(content.get("url"), text_type) - labels = content.get(LabelsField) + labels = content.get(LabelsField, []) return self.check_fields(room_id, sender, ev_type, labels, contains_url) |