We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 920541f commit c78c65dCopy full SHA for c78c65d
1 file changed
backend/src/services/memberService.ts
@@ -471,6 +471,7 @@ export default class MemberService extends LoggingBase {
471
// eslint-disable-next-line @typescript-eslint/no-unused-vars
472
displayName: (oldValue, _newValue) => oldValue,
473
reach: (oldReach, newReach) => MemberService.calculateReach(oldReach, newReach),
474
+ score: (oldScore, newScore) => Math.max(oldScore, newScore),
475
email: (oldEmail, newEmail) => {
476
if (newEmail && newEmail.trim().length > 0) {
477
return newEmail.trim()
0 commit comments