how to fix Uncaught (in promise) DOMException: The user aborted a request SoundCloud widget Api. SoundCloud widget API does not return a promise. then how to fix it. this error showing in the console and stack the custom player.
here is my code
$(scrubber).on('click input', (e) => {
e.preventDefault();
widget.seekTo(e.target.value);
widget.play();
$('#pauseSongIcon').show();
$('#playSongIcon').hide();
$('#playbackIconPause').show();
$('#playbackIconPlay').hide();
animatePlayback();
});