From 3586b40ea82a11fcc103bd556bb2226206ed7835 Mon Sep 17 00:00:00 2001 From: Luca Date: Thu, 24 Dec 2020 00:39:14 +0100 Subject: [PATCH] Update 'bauchbinde' (fix intro param) --- static/bauchbinde/assets/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }) }