diff options
author | Brian Choromanski <[email protected]> | 2021-12-31 16:34:29 -0500 |
---|---|---|
committer | Brian Choromanski <[email protected]> | 2021-12-31 16:34:29 -0500 |
commit | 0336157673855d86e0c7e4a830d638db4c092ee8 (patch) | |
tree | 2ae1aac1a8165e79dd33755e0e28082e3c4e89ab | |
parent | b758cbb25f5a2c7c45a54d9f579d9ccb6e8e799f (diff) | |
download | SponsorBlock-0336157673855d86e0c7e4a830d638db4c092ee8.tar.gz SponsorBlock-0336157673855d86e0c7e4a830d638db4c092ee8.zip |
Fixed minute to day conversion
-rw-r--r-- | src/popup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popup.ts b/src/popup.ts index 84607e15..14d22dd8 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -739,7 +739,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { */ function getFormattedHours(minutes) { minutes = Math.round(minutes * 10) / 10; - const days = Math.floor(minutes / 3600); + const days = Math.floor(minutes / 1440); const hours = Math.floor(minutes / 60) % 24; return (days > 0 ? days + chrome.i18n.getMessage("dayAbbreviation") + " " : "") + (hours > 0 ? hours + chrome.i18n.getMessage("hourAbbreviation") + " " : "") + (minutes % 60).toFixed(1); } |