Update 'bauchbinde' (fix intro param)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2020-12-24 00:39:14 +01:00
parent b71a75b92e
commit 3586b40ea8
1 changed files with 2 additions and 2 deletions

View File

@ -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);
} }
}) })
} }