diff --git a/packages/das/src/webhook/handlers/comment.handler.ts b/packages/das/src/webhook/handlers/comment.handler.ts index d5760e7..1f57e8d 100644 --- a/packages/das/src/webhook/handlers/comment.handler.ts +++ b/packages/das/src/webhook/handlers/comment.handler.ts @@ -28,6 +28,8 @@ export class CommentHandler { return; } + if (!comment.user?.id || !comment.created_at) return; + // Determine context: PR thread or issue thread const commentContext = payload.issue?.pull_request ? "pr" : "issue";