From 7cdee6c7bd15c8fbd1e7ed7041814b3ab7e6d1aa Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Tue, 28 Jul 2020 18:48:40 -0400 Subject: [PATCH] Fix concurrent calls playing when skip next --- .../src/app/components/rdio-scanner/rdio-scanner.service.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 5619acf..2ac8836 100644 --- a/client/src/app/components/rdio-scanner/rdio-scanner.service.ts +++ b/client/src/app/components/rdio-scanner/rdio-scanner.service.ts @@ -379,9 +379,10 @@ export class AppRdioScannerService implements OnDestroy { if (this.call || this.liveFeedPaused) { this.event.emit({ queue: this.callQueue.length }); - } - this.play(); + } else { + this.play(); + } } }