Use unicode U+2236 for time

This commit is contained in:
Rafał Dzięgiel
2022-01-17 20:27:13 +01:00
parent d19ddbcaca
commit 38efa7ab9f
4 changed files with 6 additions and 8 deletions

View File

@@ -161,8 +161,8 @@ function getFormattedTime(time, showHours)
time -= minutes * 60;
const seconds = ('0' + Math.floor(time)).slice(-2);
const parsed = (hours) ? `${hours}:` : '';
return parsed + `${minutes}:${seconds}`;
const parsed = (hours) ? `${hours}` : '';
return parsed + `${minutes}${seconds}`;
}
function parsePlaylistFiles(filesArray)