mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 06:51:46 +01:00
Error code must be an integer
This commit is contained in:
parent
c9d1ee24ca
commit
bcaea74352
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class FederationHandler(BaseHandler):
|
|||
try:
|
||||
yield d
|
||||
except defer.CancelledError:
|
||||
raise SynapseError("500", "Unable to join remote room")
|
||||
raise SynapseError(500, "Unable to join remote room")
|
||||
|
||||
try:
|
||||
yield self.store.store_room(
|
||||
|
|
Loading…
Reference in a new issue