Skip to content

Commit 7a9094d

Browse files
committed
fix:clear token
1 parent 758dec9 commit 7a9094d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/RedisHandler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class RedisHandler
2929
public static function generateToken(string $pre, string $client, string $uid, int $ttl, string $token): void
3030
{
3131
$cacheKey = $pre . $client. ':'. $uid;
32-
$key = Redis::keys($cacheKey . ':*');
32+
$key = Redis::keys($cacheKey . '*');
3333
if (!empty($key)) {
3434
Redis::del(current($key));
3535
}
@@ -67,7 +67,7 @@ public static function verifyToken(string $pre, string $client, string $uid, str
6767
*/
6868
public static function clearToken(string $pre, string $client, string $uid): bool
6969
{
70-
$token = Redis::keys($pre . $client. ':'. $uid . ':*');
70+
$token = Redis::keys($pre . $client. ':'. $uid . '*');
7171
if ($token) {
7272
Redis::del(current($token));
7373
}

0 commit comments

Comments
 (0)