diff --git a/src/objects.js b/src/objects.js index 128e3bf4..19ff6e63 100644 --- a/src/objects.js +++ b/src/objects.js @@ -9072,7 +9072,10 @@ Microphone.prototype.createProcessor = function () { }; Microphone.prototype.stepAudio = function (event) { - if (this.isAutoStop && ((Date.now() - this.lastTime) > 5000)) { + if (this.isAutoStop && + ((Date.now() - this.lastTime) > 5000) && + !this.modifier + ) { this.stop(); return; }