mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 04:37:39 +03:00
fix download ETA dispay
This commit is contained in:
parent
cace4ba0b1
commit
fb6b4a1ec1
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ export class EtaPipe implements PipeTransform {
|
|||
}
|
||||
const hours = Math.floor(value/3600)
|
||||
const minutes = value % 3600
|
||||
return `${hours}h ${Math.floor(minutes/60)}m ${minutes%60}s`;
|
||||
return `${hours}h ${Math.floor(minutes/60)}m ${Math.floor(minutes%60)}s`;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue