Skip to content

Commit 1a168a9

Browse files
committed
Don't log member names.
1 parent 549c481 commit 1a168a9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/record.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ module.exports = function (recordDir) {
6565
return echo(fullPath, JSON.stringify(data, (k, v) => {
6666
if (k === 'parent' || k === 'group') {
6767
return v.id
68+
} else if (k === 'fromName' && !data.isMod) {
69+
return 'Anonymous'
6870
} else {
6971
return v
7072
}

0 commit comments

Comments
 (0)