mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-22 14:38:00 +00:00
fix ValueError when adding new instance via api
This commit is contained in:
parent
5e962be057
commit
1d72f2a254
|
@ -226,8 +226,9 @@ class Inbox(View):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
row = conn.put_inbox(
|
row = conn.put_inbox(
|
||||||
data['domain'],
|
domain = data['domain'],
|
||||||
actor = data.get('actor'),
|
actor = data['actor'],
|
||||||
|
inbox = data.get('inbox'),
|
||||||
software = data.get('software'),
|
software = data.get('software'),
|
||||||
followid = data.get('followid')
|
followid = data.get('followid')
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue