fix substring

This commit is contained in:
jb-alvarado 2023-02-02 10:05:41 +01:00
parent 0a7efd76a1
commit 77d61855d8

View File

@ -63,7 +63,7 @@ export const stringFormatter = () => {
}
function secondsToTime(sec: number) {
return new Date(sec * 1000).toISOString().substring(11, 8)
return new Date(sec * 1000).toISOString().substring(11, 19)
}
function mediaType(path: string) {