From 9a3ffebee9175a56dba4bd7cd26d3b2a25476c44 Mon Sep 17 00:00:00 2001 From: Dr Masroor Ehsan Date: Sun, 5 Jan 2025 10:20:04 +0600 Subject: [PATCH] wip --- app/Services/UserService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/UserService.php b/app/Services/UserService.php index 45c4802..f02091b 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -9,7 +9,7 @@ { private static function lastSeenKey(int $userId): string { - return sprintf('last_seen_%d', $userId); + return sprintf('last_seen:%d', $userId); } public static function setLastSeen(int $userId, ?Carbon $seenAt = null): void