Skip to content
Snippets Groups Projects
Commit 419ed3a0 authored by kaniini's avatar kaniini
Browse files

oauth: fix token decode regression

parent f745e823
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment