mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:36:03 -04:00
Fix up error messages
This commit is contained in:
parent
28efc80723
commit
9fa3c6ffa3
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ class EventValidator(object):
|
|||
|
||||
for s in event_strings:
|
||||
if not isinstance(getattr(event, s), string_types):
|
||||
raise SynapseError(400, "Not '%s' a string type" % (s,))
|
||||
raise SynapseError(400, "'%s' not a string type" % (s,))
|
||||
|
||||
if event.type == EventTypes.Message:
|
||||
content_strings = [
|
||||
|
@ -119,4 +119,4 @@ class EventValidator(object):
|
|||
if s not in d:
|
||||
raise SynapseError(400, "'%s' not in content" % (s,))
|
||||
if not isinstance(d[s], string_types):
|
||||
raise SynapseError(400, "Not '%s' a string type" % (s,))
|
||||
raise SynapseError(400, "'%s' not a string type" % (s,))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue