diff --git a/src/renderer/pages/player-page.js b/src/renderer/pages/player-page.js index 6cb1f86339..eb4f669cbe 100644 --- a/src/renderer/pages/player-page.js +++ b/src/renderer/pages/player-page.js @@ -735,7 +735,7 @@ function formatTime (time, total) { } const totalHours = Math.floor(total / 3600) - const totalMinutes = Math.floor(total % 3600 / 60) + const totalMinutes = Math.floor(total / 60) const hours = Math.floor(time / 3600) let minutes = Math.floor(time % 3600 / 60) if (totalMinutes > 9) {