Merge pull request #3303 from pixelfed/staging

Update ReblogService
This commit is contained in:
daniel 2022-03-11 00:01:16 -07:00 committed by GitHub
commit 7db44d8d85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}
}