From 1a1396dbe458332aa085e42f1a7929ae38287310 Mon Sep 17 00:00:00 2001 From: Ash-exp Date: Thu, 25 Sep 2025 13:30:50 +0530 Subject: [PATCH] fix: reset checkout message on successful fetch --- git-sensor/pkg/RepoManages.go | 1 + 1 file changed, 1 insertion(+) diff --git a/git-sensor/pkg/RepoManages.go b/git-sensor/pkg/RepoManages.go index e3f69a3b7..90a448727 100644 --- a/git-sensor/pkg/RepoManages.go +++ b/git-sensor/pkg/RepoManages.go @@ -407,6 +407,7 @@ func (impl RepoManagerImpl) checkoutMaterial(gitCtx git.GitContext, material *sq } else { material.CheckoutLocation = checkoutLocationForFetching material.CheckoutStatus = true + material.CheckoutMsgAny = "" material.FetchStatus = true } err = impl.materialRepository.Update(material)