fix: breaks

This commit is contained in:
Carlos Alexandro Becker
2025-07-25 11:40:04 -03:00
parent b92d8800e3
commit 615c8d222f
2 changed files with 2 additions and 0 deletions

View File

@@ -249,6 +249,7 @@ func (a *agent) IsBusy() bool {
for cancelFunc := range a.activeRequests.Seq() {
if cancelFunc != nil {
busy = true
break
}
}
return busy

View File

@@ -201,6 +201,7 @@ func (m *sidebarCmp) handleFileHistoryEvent(event pubsub.Event[history.File]) te
existing.Deletions = deletions
m.files.Set(file.Path, existing)
found = true
break
}
if found {
return nil