From a035b67e6c1b9a58d7aa1ce7fa23f9e7d9c56ffd Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Wed, 27 Jul 2022 11:37:12 +0100 Subject: [PATCH] bugfix: hold music fetched when conference member removed from hold --- lib/tasks/conference.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/conference.js b/lib/tasks/conference.js index ce6915fa..767ff42d 100644 --- a/lib/tasks/conference.js +++ b/lib/tasks/conference.js @@ -453,7 +453,7 @@ class Conference extends Task { this._playSession = null; break; } - } while (!this.killed && this.conf_hold_status !== 'hold'); + } while (!this.killed && this.conf_hold_status === 'hold'); } /**