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 62937d7 commit d3236c5Copy full SHA for d3236c5
src/howler.core.js
@@ -1678,7 +1678,7 @@
1678
// If we are using IE and there was network latency we may be clipping
1679
// audio before it completes playing. Lets check the node to make sure it
1680
// believes it has completed, before ending the playback.
1681
- if (!self._webAudio && !self._node.ended) {
+ if (!self._webAudio && self._node && !self._node.ended) {
1682
setTimeout(self._ended.bind(self, sound), 100);
1683
return self;
1684
}
0 commit comments