diff --git a/static/bauchbinde/assets/script.js b/static/bauchbinde/assets/script.js index be878b2..2ab3256 100644 --- a/static/bauchbinde/assets/script.js +++ b/static/bauchbinde/assets/script.js @@ -18,10 +18,10 @@ speaker = decodeURIComponent(value); } if (key === 'intro') { - isIntro = !!value + isIntro = !!parseInt(value, 10) } if (key === 'hold') { - holdDuration = parseInt(value); + holdDuration = parseInt(value, 10); } }) }