fix: anonymize PR comment authors and bodies in previews

This commit is contained in:
tdurieux
2026-09-06 10:47:26 +02:00
parent 66e4be0a0c
commit 5c6e5b6519
4 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -2203,7 +2203,7 @@ angular
if (typeof d.body === "string") out.add(d.body);
if (typeof d.diff === "string") out.add(d.diff);
const comments =
($scope.details && $scope.details.comments) || [];
d.comments || [];
for (const c of comments) {
if (typeof c.author === "string") out.add(c.author);
if (typeof c.body === "string") out.add(c.body);
+1 -1
View File
File diff suppressed because one or more lines are too long