1
0
Fork 0

Update PublicTimelineService, skip adds for now

This commit is contained in:
Daniel Supernault 2021-07-02 01:21:21 -06:00
parent 52ed8bf4ea
commit 117b8410eb
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,8 @@ class PublicTimelineService {
public static function add($val)
{
return Redis::zadd(self::CACHE_KEY, 1, $val);
// return Redis::zadd(self::CACHE_KEY, $val, $val);
return;
}
public static function rem($val)
@ -64,4 +65,4 @@ class PublicTimelineService {
}
return 0;
}
}
}