How To fix this error when trying to play an audio file?

Update this doesnt happen when I switch to firefox from google chrome.

Hi there how do I fix this?
Uncaught (in promise) DOMException: The play() request was interrupted by a call to pause().

If i follow the Foundry.js 63149 It takes me to the script below.

_unloadMediaNode() {
if ( this.isBuffer ) return;
console.debug(${vtt} | Unloading audio element - ${this.src});
this.sourceNode.disconnect(this.gainNode);
this.gainNode.disconnect(this.context.destination);
this.element.onended = undefined;
this.element.pause();
this.element.src = “”;
this.element.remove();
this.loadState = AudioContainer.LOAD_STATES.NONE;
}

Could you tell us a little bit more about what is happening in this situation?