Browse Source

Update LikeService, fix typo

Daniel Supernault 2 years ago
parent
commit
5ec25204ca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Services/LikeService.php

+ 1 - 1
app/Services/LikeService.php

@@ -25,7 +25,7 @@ class LikeService {
 	{
 		if(self::setCount($profileId) > 400) {
 			if(config('database.redis.client') === 'phpredis') {
-				Redis::zpopmin(self::CACHE_SET_KEY . $id);
+				Redis::zpopmin(self::CACHE_SET_KEY . $profileId);
 			}
 		}