diff --git a/src/Account/Services/Auth/AppAuthentication.php b/src/Account/Services/Auth/AppAuthentication.php index 91e66a2..bb5f4c0 100644 --- a/src/Account/Services/Auth/AppAuthentication.php +++ b/src/Account/Services/Auth/AppAuthentication.php @@ -50,9 +50,7 @@ class AppAuthentication implements AuthenticationInterface } $user = unserialize($redis_data); - if (empty($this->user) || $user['last_time'] != $this->user['last_time']) { - $this->user = $user; - } + $this->user = $user; $this->redis->expire($this->prefix . $token, $this->expire);