From e37f688dd70e624ae81aa9a943f33da2701a2452 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Sat, 5 Apr 2025 22:05:28 +0300 Subject: [PATCH] appview: fix nil assignment --- appview/state/pull.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/appview/state/pull.go b/appview/state/pull.go index 6610f944..3efd45c7 100644 --- a/appview/state/pull.go +++ b/appview/state/pull.go @@ -372,9 +372,8 @@ func (s *State) RepoPulls(w http.ResponseWriter, r *http.Request) { return } } + p.PullSource.Repo = pullSourceRepo } - - p.PullSource.Repo = pullSourceRepo } identsToResolve := make([]string, len(pulls)) -- 2.51.2