mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 18:08:00 +00:00
Merge branch 'fix-newerror' into 'dev'
Fix Response.new_error See merge request pleroma/relay!40
This commit is contained in:
commit
689fa1f8b4
|
@ -488,7 +488,7 @@ class Response(AiohttpResponse):
|
|||
if ctype == 'json':
|
||||
body = json.dumps({'status': status, 'error': body})
|
||||
|
||||
return cls(body=body, status=status, ctype=ctype)
|
||||
return cls.new(body=body, status=status, ctype=ctype)
|
||||
|
||||
|
||||
@property
|
||||
|
|
Loading…
Reference in a new issue