Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/include/rcmail_oauth.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcmail_oauth.php b/program/include/rcmail_oauth.php
index 84e7402c1..c991b04a5 100644
--- a/program/include/rcmail_oauth.php
+++ b/program/include/rcmail_oauth.php
@@ -234,7 +234,7 @@ class rcmail_oauth
],
]);
- $data = \GuzzleHttp\json_decode($response->getBody(), true);
+ $data = json_decode($response->getBody(), true);
// auth success
if (!empty($data['access_token'])) {
@@ -272,7 +272,7 @@ class rcmail_oauth
],
]);
- $identity = \GuzzleHttp\json_decode($identity_response->getBody(), true);
+ $identity = json_decode($identity_response->getBody(), true);
foreach ($this->options['identity_fields'] as $field) {
if (isset($identity[$field])) {
@@ -378,7 +378,7 @@ class rcmail_oauth
'grant_type' => 'refresh_token',
],
]);
- $data = \GuzzleHttp\json_decode($response->getBody(), true);
+ $data = json_decode($response->getBody(), true);
// auth success
if (!empty($data['access_token'])) {