Fix concurrent calls playing when skip next

This commit is contained in:
Chrystian Huot 2020-07-28 18:48:40 -04:00
parent ff7f518292
commit 7cdee6c7bd

View file

@ -379,9 +379,10 @@ export class AppRdioScannerService implements OnDestroy {
if (this.call || this.liveFeedPaused) { if (this.call || this.liveFeedPaused) {
this.event.emit({ queue: this.callQueue.length }); this.event.emit({ queue: this.callQueue.length });
}
this.play(); } else {
this.play();
}
} }
} }