We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90daf4 commit a1305afCopy full SHA for a1305af
src/howler.core.js
@@ -1706,7 +1706,7 @@
1706
// If we are using IE and there was network latency we may be clipping
1707
// audio before it completes playing. Lets check the node to make sure it
1708
// believes it has completed, before ending the playback.
1709
- if (!self._webAudio && sound._node && !sound._node.paused) {
+ if (!self._webAudio && sound._node && !sound._node.paused && !sound._node.ended) {
1710
setTimeout(self._ended.bind(self, sound), 100);
1711
return self;
1712
}
0 commit comments