From 631e67d340f2c0f5886f66a82665179f4b7a5013 Mon Sep 17 00:00:00 2001 From: Tom Dixon Date: Fri, 24 Feb 2023 12:24:27 +0000 Subject: [PATCH] Fix to ensure internal calls to stop which are blocked by the playLock respect the 'internal' flag --- src/howler.core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/howler.core.js b/src/howler.core.js index aa60cdbe..5085da5c 100644 --- a/src/howler.core.js +++ b/src/howler.core.js @@ -1084,7 +1084,7 @@ self._queue.push({ event: 'stop', action: function() { - self.stop(id); + self.stop(id, internal); } });