From be270e23ebd56ea37c74654e84b9c7e1ebb17fda Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 29 Aug 2025 06:27:32 -0700 Subject: [PATCH] tmp --- src/github/data/fetcher.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/github/data/fetcher.ts b/src/github/data/fetcher.ts index 3b08022..fb78418 100644 --- a/src/github/data/fetcher.ts +++ b/src/github/data/fetcher.ts @@ -59,7 +59,7 @@ function filterCommentsToTriggerTime< // Comment must have been created before trigger const createdTimestamp = new Date(comment.createdAt).getTime(); if (createdTimestamp > triggerTimestamp) { - console.log("filtering", comment); + console.log("filtering for creation time", comment); return false; } @@ -69,6 +69,7 @@ function filterCommentsToTriggerTime< if (lastEditTime) { const lastEditTimestamp = new Date(lastEditTime).getTime(); if (lastEditTimestamp > triggerTimestamp) { + console.log("filtering for last edit time", comment); return false; } }