diff --git a/src/generators/nodes/Binding.ts b/src/generators/nodes/Binding.ts index 16bd24c0f2..f1725a6d73 100644 --- a/src/generators/nodes/Binding.ts +++ b/src/generators/nodes/Binding.ts @@ -75,7 +75,9 @@ export default class Binding extends Node { if (this.name === 'currentTime' || this.name === 'volume') { updateCondition = `!isNaN(${snippet})`; - initialUpdate = null; + + if (this.name === 'currentTime') + initialUpdate = null; } if (this.name === 'paused') {