mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
don't pad hours when displaying time
This commit is contained in:
parent
331355a717
commit
bc8525eb2b
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ const mixin = {
|
||||||
|
|
||||||
var str = "";
|
var str = "";
|
||||||
|
|
||||||
if (hours > 0) str += pad(hours, 2) + ":";
|
if (hours > 0) str += hours + ":";
|
||||||
|
|
||||||
str += pad(minutes, 2) + ":" + pad(seconds, 2);
|
str += pad(minutes, 2) + ":" + pad(seconds, 2);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue