From 646f653368e979f87da4b0e63f04b1cefdf8e471 Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Sat, 17 Sep 2022 08:15:08 +0000 Subject: [PATCH] Update library.js --- library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.js b/library.js index 971c2aa..a46c06d 100644 --- a/library.js +++ b/library.js @@ -174,7 +174,7 @@ profile.displayName = data.display_name; profile.emails = [{ value: data.email }]; profile.isAdmin = (data.privileges || []).includes('admin'); - profile.picture = data.picture; + profile.picture = data.image; // eslint-disable-next-line callback(null, profile);