logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 56022936902a5ab738200ef1a04724ed96b79e22
parent: c36229c4aa3bd0ac49d9dcd589790f5c47470564
Author: Roger Braun <roger@rogerbraun.net>
Date:   Sat, 16 Sep 2017 11:37:55 +0200

Fix callback state.

Diffstat:

Mlib/pleroma/web/oauth/oauth_controller.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/oauth/oauth_controller.ex b/lib/pleroma/web/oauth/oauth_controller.ex @@ -15,7 +15,7 @@ defmodule Pleroma.Web.OAuth.OAuthController do } end - def create_authorization(conn, %{"authorization" => %{"name" => name, "password" => password, "client_id" => client_id, "redirect_uri" => redirect_uri}} = params) do + def create_authorization(conn, %{"authorization" => %{"name" => name, "password" => password, "client_id" => client_id, "redirect_uri" => redirect_uri} = params}) do with %User{} = user <- User.get_cached_by_nickname(name), true <- Pbkdf2.checkpw(password, user.password_hash), %App{} = app <- Repo.get_by(App, client_id: client_id),