fix: correct progress display (remove duplicate /s, handle HLS reset)
All checks were successful
CI / build (push) Successful in 47s

This commit is contained in:
2026-06-26 00:46:26 +03:30
parent 58baa1b769
commit 57dffc4194
2 changed files with 11 additions and 4 deletions

View File

@@ -439,11 +439,18 @@ func (h *Handler) trackDownloadProgress(ctx context.Context, job *domain.Downloa
return
}
if upd.Progress > 0 && lastProgress == 0 {
if lastProgress == 0 {
lastProgress = upd.Progress
} else if upd.Progress-lastProgress < domain.ProgressThreshold {
continue
} else {
diff := upd.Progress - lastProgress
// Skip small changes (< threshold) in either direction to avoid spamming edits.
// HLS streams often emit a fake 100% initial estimate then real values.
if diff >= 0 && diff < domain.ProgressThreshold {
continue
}
if diff < 0 && -diff < domain.ProgressThreshold {
continue
}
lastProgress = upd.Progress
}