diff --git a/src/popup.ts b/src/popup.ts index f28589a7..f4fd0b47 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -598,7 +598,7 @@ async function runThePopup(messageListener?: MessageListener): Promise { //converts time in seconds to minutes:seconds function getFormattedTime(seconds) { const minutes = Math.floor(seconds / 60); - const secondsDisplayNumber = Math.round(seconds - minutes * 60); + const secondsDisplayNumber = Math.floor(seconds - minutes * 60); let secondsDisplay = String(secondsDisplayNumber); if (secondsDisplayNumber < 10) { //add a zero