Skip to content

Commit 5836c0e

Browse files
authored
Merge pull request #3 from canren/patch-1
fixed refresh token failed when token expired
2 parents 865db72 + 5500d90 commit 5836c0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public function invalidate(Token $token, bool $forceForever = false): bool
133133

134134
return call_user_func(
135135
[$this->blacklist, $forceForever ? 'addForever' : 'add'],
136-
$this->decode($token, false)
136+
$this->decode($token, false, true)
137137
);
138138
}
139139

0 commit comments

Comments
 (0)