From c356ae6de8b6e0addaad2f66fbecba8e909744ea Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Mon, 30 May 2022 15:26:04 +0200 Subject: [PATCH] :bug: Fix github auth without name --- backend/src/app/http/oauth.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/http/oauth.clj b/backend/src/app/http/oauth.clj index 05a43064a..869134f18 100644 --- a/backend/src/app/http/oauth.clj +++ b/backend/src/app/http/oauth.clj @@ -119,7 +119,7 @@ (get-email info))] {:backend (:name provider) :email email - :fullname (get-name info) + :fullname (or (get-name info) email) :props (->> (dissoc info :name :email) (qualify-props provider))}))