[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2022-08-09 09:27:07 +02:00
parent 6bc00f7505
commit fc68692b9c
+1 -1
View File
@@ -128,7 +128,7 @@ module.exports = class Logger {
time = Math.floor((ms / 1000 / 60) % 60);
type = 'm';
}
if (ms >= 600000) {
if (ms >= (3, 6e6)) {
time = Math.floor((ms / 1000 / 60 / 60) % 24);
type = 'h';
}