Fix miniature progress bar

This commit is contained in:
Chocobozzz 2025-02-05 09:05:48 +01:00
parent 9ac4ecb6f8
commit e6725e6d3a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ export class VideoThumbnailComponent {
const currentTime = this.video.userHistory.currentTime
return Math.round((currentTime / this.video.duration)) * 100
return Math.round(currentTime / this.video.duration * 100)
}
getDurationOverlayLabel () {