|
@@ -191,7 +191,10 @@ export async function addWatermark(
|
|
groups[detail.groupNumber] = group;
|
|
groups[detail.groupNumber] = group;
|
|
maxGroupNumber = Math.max(maxGroupNumber, group.number);
|
|
maxGroupNumber = Math.max(maxGroupNumber, group.number);
|
|
}
|
|
}
|
|
- group.score = group.score + (detail.score === -1 ? 0 : detail.score);
|
|
|
|
|
|
+ group.score =
|
|
|
|
+ (group.score * 1000 +
|
|
|
|
+ (detail.score === -1 ? 0 : detail.score) * 1000) /
|
|
|
|
+ 1000;
|
|
if (detail.mainTitle && !group.title[detail.mainTitle]) {
|
|
if (detail.mainTitle && !group.title[detail.mainTitle]) {
|
|
group.titleString.push(detail.mainTitle);
|
|
group.titleString.push(detail.mainTitle);
|
|
group.title[detail.mainTitle] = true;
|
|
group.title[detail.mainTitle] = true;
|