From 58f690f1206ddce60daaab08d3d33aa3efa2a97e Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 29 Aug 2025 06:26:02 -0700 Subject: [PATCH] tmp --- src/github/data/fetcher.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/github/data/fetcher.ts b/src/github/data/fetcher.ts index 51072f8..3b08022 100644 --- a/src/github/data/fetcher.ts +++ b/src/github/data/fetcher.ts @@ -59,6 +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); return false; }