From d6bd927d70b503a9218fa61ff2872e6a72063afe Mon Sep 17 00:00:00 2001 From: Will Andrews Date: Wed, 21 Jan 2026 20:37:39 +0000 Subject: [PATCH] appview/state: count commits where email is the users did, towards punchcards Signed-off-by: Will Andrews --- appview/state/knotstream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appview/state/knotstream.go b/appview/state/knotstream.go index 2c7a6cfa..5a6348d8 100644 --- a/appview/state/knotstream.go +++ b/appview/state/knotstream.go @@ -122,7 +122,7 @@ func populatePunchcard(d *db.DB, record tangled.GitRefUpdate) error { if ce == nil { continue } - if ce.Email == ke.Address { + if ce.Email == ke.Address || ce.Email == record.CommitterDid { count += int(ce.Count) } } -- 2.51.2