Don't break with old cached data

This commit is contained in:
Ajay Ramachandran 2021-05-23 23:19:39 -04:00
parent 52b201ff87
commit 30d0cb7590

View file

@ -224,7 +224,7 @@ async function chooseSegments(segments: DBSegment[], max: number): Promise<DBSeg
currentGroup.votes += segment.votes;
}
segment.reputation = Math.min(segment.reputation, await getReputation(segment.userID));
if (segment.userID) segment.reputation = Math.min(segment.reputation, await getReputation(segment.userID));
if (segment.reputation > 0) {
currentGroup.reputation += segment.reputation;
}