summary refs log tree commit diff
path: root/synapse/events
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-01-29 10:37:40 +0000
committerErik Johnston <erik@matrix.org>2019-01-29 10:37:40 +0000
commit40638ae7f50428454edd9961450f5dfb3cbd405a (patch)
tree34d159ee383affae2d2b8822b188498449be0ac5 /synapse/events
parentFix up error messages (diff)
downloadsynapse-40638ae7f50428454edd9961450f5dfb3cbd405a.tar.xz
Remove duplicate checks
Diffstat (limited to 'synapse/events')
-rw-r--r--synapse/events/validator.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/synapse/events/validator.py b/synapse/events/validator.py
index 4fa03501f8..c53bf44e51 100644
--- a/synapse/events/validator.py
+++ b/synapse/events/validator.py
@@ -54,20 +54,6 @@ class EventValidator(object):
             if not isinstance(getattr(event, s), string_types):
                 raise SynapseError(400, "'%s' not a string type" % (s,))
 
-        if event.type == EventTypes.Message:
-            content_strings = [
-                "body",
-                "msgtype",
-            ]
-
-            self._ensure_strings(event.content, content_strings)
-
-        elif event.type == EventTypes.Topic:
-            self._ensure_strings(event.content, ["topic"])
-
-        elif event.type == EventTypes.Name:
-            self._ensure_strings(event.content, ["name"])
-
     def validate_builder(self, event):
         """Validates that the builder/event has roughly the right format. Only
         checks values that we expect a proto event to have, rather than all the