Merge pull request #989 from matrix-org/erikj/raise_404

Raise 404 when couldn't find event
pull/991/head
Erik Johnston 2016-08-05 15:54:16 +01:00 committed by GitHub
commit e6021c370e
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class EventsStore(SQLBaseStore):
)
if not events and not allow_none:
raise RuntimeError("Could not find event %s" % (event_id,))
raise SynapseError(404, "Could not find event %s" % (event_id,))
defer.returnValue(events[0] if events else None)