Make reputation take into account more recent segments

This commit is contained in:
Ajay Ramachandran
2021-07-12 11:05:12 -04:00
parent ef86fceedd
commit a23ec160c0
3 changed files with 19 additions and 8 deletions

View File

@@ -14,5 +14,5 @@ export function skipSegmentsHashKey(hashedVideoIDPrefix: VideoIDHash, service: S
}
export function reputationKey(userID: UserID): string {
return "reputation.user." + userID;
return "reputation.user.v2." + userID;
}