forked from AkkomaGang/akkoma
Fix typo in app creation response
Mastodon sends redirect_uri (singular), so should Pleroma.
This commit is contained in:
parent
bdb6811f6f
commit
6698749073
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ def create_app(conn, params) do
|
||||||
name: app.client_name,
|
name: app.client_name,
|
||||||
client_id: app.client_id,
|
client_id: app.client_id,
|
||||||
client_secret: app.client_secret,
|
client_secret: app.client_secret,
|
||||||
redirect_uris: app.redirect_uris,
|
redirect_uri: app.redirect_uris,
|
||||||
website: app.website
|
website: app.website
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue