Update 'bauchbinde' (fix intro param)
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
b71a75b92e
commit
3586b40ea8
|
@ -18,10 +18,10 @@
|
||||||
speaker = decodeURIComponent(value);
|
speaker = decodeURIComponent(value);
|
||||||
}
|
}
|
||||||
if (key === 'intro') {
|
if (key === 'intro') {
|
||||||
isIntro = !!value
|
isIntro = !!parseInt(value, 10)
|
||||||
}
|
}
|
||||||
if (key === 'hold') {
|
if (key === 'hold') {
|
||||||
holdDuration = parseInt(value);
|
holdDuration = parseInt(value, 10);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue