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:
Diffstat (limited to 'program/include/rcmail_oauth.php')
-rw-r--r--program/include/rcmail_oauth.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/program/include/rcmail_oauth.php b/program/include/rcmail_oauth.php
index b2f954c7e..618438388 100644
--- a/program/include/rcmail_oauth.php
+++ b/program/include/rcmail_oauth.php
@@ -409,6 +409,11 @@ class rcmail_oauth
], true, false
);
+ // refrehsing token failed, mark session as expired
+ if ($e->getCode() >= 400 && $e->getCode() < 500) {
+ $this->rcmail->kill_session();
+ }
+
return false;
}
catch (Exception $e) {
@@ -451,7 +456,7 @@ class rcmail_oauth
*/
protected function check_token_validity($token)
{
- if ($token['expires'] < time() && isset($token['refresh_token']) && empty($this->last_error)) {
+ if (1 || $token['expires'] < time() && isset($token['refresh_token']) && empty($this->last_error)) {
return $this->refresh_access_token($token) !== false;
}
return false;