From ab8e885ca8470a103d13ef21c25d27a8093c5807 Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Mon, 24 Aug 2020 13:00:29 -0400 Subject: [PATCH] Emit queue length when skipDelay is active --- client/src/app/components/rdio-scanner/rdio-scanner.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/components/rdio-scanner/rdio-scanner.service.ts b/client/src/app/components/rdio-scanner/rdio-scanner.service.ts index 4b3827f..56fabda 100644 --- a/client/src/app/components/rdio-scanner/rdio-scanner.service.ts +++ b/client/src/app/components/rdio-scanner/rdio-scanner.service.ts @@ -416,7 +416,7 @@ export class AppRdioScannerService implements OnDestroy { if (call?.audio) { this.callQueue.push(call); - if (this.audioSource || this.call || this.liveFeedPaused) { + if (this.audioSource || this.call || this.liveFeedPaused || this.skipDelay) { this.event.emit({ queue: this.callQueue.length }); } else {