aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Identity
diff options
context:
space:
mode:
authorPascal Deklerck <pascal.deklerck@gmail.com>2018-12-15 22:19:18 +0100
committerPascal Deklerck <pascal.deklerck@gmail.com>2018-12-15 22:19:18 +0100
commit6a825cc504901b6c09724e487f43b5012805c6a0 (patch)
tree9c350b61dd23ec5ce46d01457c587524f65ac224 /Zotlabs/Identity
parent3ed6763da9cd34a1124d57928a850d0583cdc023 (diff)
downloadvolse-hubzilla-6a825cc504901b6c09724e487f43b5012805c6a0.tar.gz
volse-hubzilla-6a825cc504901b6c09724e487f43b5012805c6a0.tar.bz2
volse-hubzilla-6a825cc504901b6c09724e487f43b5012805c6a0.zip
Update OAuth2Storage.php - fix email retrieval in getUser
Diffstat (limited to 'Zotlabs/Identity')
-rw-r--r--Zotlabs/Identity/OAuth2Storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Identity/OAuth2Storage.php b/Zotlabs/Identity/OAuth2Storage.php
index bbf61cf2b..a4ba9c526 100644
--- a/Zotlabs/Identity/OAuth2Storage.php
+++ b/Zotlabs/Identity/OAuth2Storage.php
@@ -64,7 +64,7 @@ class OAuth2Storage extends \OAuth2\Storage\Pdo {
return( [
'webfinger' => channel_reddress($x),
'portable_id' => $x['channel_hash'],
- 'email' => $a['account_email'],
+ 'email' => $a[0]['account_email'],
'username' => $x['channel_address'],
'user_id' => $x['channel_id'],
'name' => $x['channel_name'],