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

@@ -69,7 +69,7 @@ func languageKeyboard(languages []string) models.InlineKeyboardMarkup {
func progressKeyboard(pct float64, speed, eta string) models.InlineKeyboardMarkup {
progressText := fmt.Sprintf("%.1f%%", pct)
if speed != "" {
progressText += fmt.Sprintf(" | %s/s", speed)
progressText += fmt.Sprintf(" | %s", speed)
}
if eta != "" {
progressText += fmt.Sprintf(" | ETA %s", eta)