1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-30 00:20:34 +01:00

Merge branch 'bugfix/oauth-padding' into 'develop'

hotfix: oauth: fix token decode regression

Closes #373

See merge request pleroma/pleroma!439
This commit is contained in:
kaniini 2018-11-11 05:34:45 +00:00
commit 61d173d37c

View File

@ -143,8 +143,11 @@ defmodule Pleroma.Web.OAuth.OAuthController do
end
end
# XXX - for whatever reason our token arrives urlencoded, but Plug.Conn should be
# decoding it. Investigate sometime.
defp fix_padding(token) do
token
|> URI.decode()
|> Base.url_decode64!(padding: false)
|> Base.url_encode64()
end