mirror of
https://github.com/matrix-org/synapse.git
synced 2026-05-05 20:26:41 +02:00
Fixed GET /events/$id to be not broken.
This commit is contained in:
parent
bf10cf5f1a
commit
65693e9e15
@ -126,5 +126,7 @@ class EventHandler(BaseHandler):
|
||||
defer.returnValue(None)
|
||||
return
|
||||
|
||||
yield self.auth.check(event, raises=True)
|
||||
if hasattr(event, "room_id"):
|
||||
yield self.auth.check_joined_room(event.room_id, user.to_string())
|
||||
|
||||
defer.returnValue(event)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user