From e7ab7d499ece5ffa110e50e4fa326aeffb5faee3 Mon Sep 17 00:00:00 2001 From: 5jiji Date: Sun, 5 Oct 2025 02:39:40 +0200 Subject: [PATCH] appview/pulls: Fix CreatedAt record field missing sometimes Signed-off-by: 5jiji --- appview/pulls/pulls.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appview/pulls/pulls.go b/appview/pulls/pulls.go index 126202a7..02b0a15b 100644 --- a/appview/pulls/pulls.go +++ b/appview/pulls/pulls.go @@ -1155,6 +1155,7 @@ func (s *Pulls) createPullRequest( }, Patch: patch, Source: recordPullSource, + CreatedAt: time.Now().Format(time.RFC3339) }, }, }) @@ -1807,6 +1808,7 @@ func (s *Pulls) resubmitPullHelper( }, Patch: patch, // new patch Source: recordPullSource, + CreatedAt: time.Now().Format(time.RFC3339) }, }, }) -- 2.43.0