backup: Fix ETA calculation for >= 100%

This commit is contained in:
Alexander Neumann 2018-04-29 14:40:49 +02:00
parent d8bbe5dc84
commit 846c2b6869
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ func (b *Backup) update(total, processed counter, errors uint, currentFiles map[
} else {
var eta string
if secs > 0 {
if secs > 0 && processed.Bytes < total.Bytes {
eta = fmt.Sprintf(" ETA %s", formatSeconds(secs))
}