Include direct convert in queue totals

This commit is contained in:
Stu Leak 2025-11-30 01:00:05 -05:00
parent 58773c509c
commit cf700b2050

View File

@ -227,6 +227,10 @@ func (s *appState) queueProgressCounts() (completed, total int) {
pending, running, completedCount, failed := s.jobQueue.Stats()
// Total includes all jobs in memory, including cancelled/failed/pending
total = len(s.jobQueue.List())
// Include direct conversion as an in-flight item in totals
if s.convertBusy {
total++
}
completed = completedCount
_ = pending
_ = running