Skip to content

Commit 2a903f6

Browse files
committed
Fix contribution ID generation to use the original ID instead of a concatenated string
1 parent 3341188 commit 2a903f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/digest/cron.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ it may contain non-translatable parts like acronyms, keep them as is.`;
234234
url: repoContribution.url,
235235
repositoryId,
236236
contributorId,
237-
id: `${provider}-${repoContribution.id}`,
237+
id: repoContribution.id,
238238
};
239239
await this.contributionsRepository.upsert(contributionEntity);
240240
await this.searchService.upsert("contribution", contributionEntity);

0 commit comments

Comments
 (0)