diff --git a/src/js/player.js b/src/js/player.js index 63c19a04b8..df7a0c5057 100644 --- a/src/js/player.js +++ b/src/js/player.js @@ -2761,6 +2761,9 @@ class Player extends Component { * and calls `reset` on the tech`. */ reset() { + if (this.tech_) { + this.tech_.clearTracks('text'); + } this.loadTech_(this.options_.techOrder[0], null); this.techCall_('reset'); }