From ff7330048b30d26938f3cb6792dc093f178a652f Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 8 Jan 2021 13:22:00 +0100 Subject: [PATCH] :bug: Fix wrong params on google auth functions. --- backend/src/app/http/auth/google.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/http/auth/google.clj b/backend/src/app/http/auth/google.clj index 4447e42cd..83023d613 100644 --- a/backend/src/app/http/auth/google.clj +++ b/backend/src/app/http/auth/google.clj @@ -90,7 +90,7 @@ :include_granted_scopes true :state token :response_type "code" - :redirect_uri (build-redirect-url) + :redirect_uri (build-redirect-url cfg) :client_id (:client-id cfg)} query (uri/map->query-string params) uri (-> (uri/uri base-goauth-uri)