diff --git a/CHANGELOG.md b/CHANGELOG.md index f2963006..fb22fad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ You can find and compare releases at the GitHub release page. ### Fixed - Auth header not ignoring other auth schemes +- Logout/invalidate not working ## [1.4.2] diff --git a/src/Manager.php b/src/Manager.php index 3e665ec8..4a01e232 100644 --- a/src/Manager.php +++ b/src/Manager.php @@ -108,7 +108,6 @@ public function decode(Token $token, $checkBlacklist = true) if ( $checkBlacklist && $this->blacklistEnabled && - $this->getBlackListExceptionEnabled() && $this->blacklist->has($payload) ) { throw new TokenBlacklistedException('The token has been blacklisted');