Fixed error in js

This commit is contained in:
Eliot Berriot 2018-12-19 20:34:16 +01:00
parent 4c2730bc59
commit 12f3670548
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
2 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export default {
durationFormatted (v) {
let duration = parseInt(v)
if (duration % 1 !== 0) {
return time.parse(0)
return this.parse(0)
}
duration = Math.round(duration)
return this.parse(duration)

0
front/stats.json Normal file
View File