Update ReblogService

This commit is contained in:
Daniel Supernault 2022-03-11 00:00:47 -07:00
parent 4482482e2a
commit d48674154a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class ReblogService
$pid = intval($parentId);
$id = intval($reblogId);
if($pid && $id) {
return Redis::zadd(self::REBLOGS_KEY . $pid, $id);
return Redis::zadd(self::REBLOGS_KEY . $pid, $id, $id);
}
}