diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/o_auth/o_auth_controller.ex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/pleroma/web/o_auth/o_auth_controller.ex b/lib/pleroma/web/o_auth/o_auth_controller.ex index 2d315d4c4..e3cf35a2b 100644 --- a/lib/pleroma/web/o_auth/o_auth_controller.ex +++ b/lib/pleroma/web/o_auth/o_auth_controller.ex @@ -375,7 +375,9 @@ defmodule Pleroma.Web.OAuth.OAuthController do def token_revoke(%Plug.Conn{} = conn, %{"token" => _token} = params) do with {:ok, app} <- Token.Utils.fetch_app(conn), {:ok, _token} <- RevokeToken.revoke(app, params) do - json(conn, %{}) + conn + |> Plug.Conn.delete_session(:user_id) + |> json(%{}) else _error -> # RFC 7009: invalid tokens [in the request] do not cause an error response |