Browse Source

Update ReblogService

Daniel Supernault 3 years ago
parent
commit
d48674154a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Services/ReblogService.php

+ 1 - 1
app/Services/ReblogService.php

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