Fix queued calls not playing after stopping a stored call from the search panel

This commit is contained in:
Chrystian Huot 2020-06-01 16:34:38 -04:00
parent a0ae91226d
commit 707d07ab80
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@
</ng-container>
<ng-container
*ngIf="!liveFeedPaused && (!config.allowDownload || !downloadMode.checked)">
<button mat-icon-button (click)="row?.id === call?.id ? stop() : play(row.id)">
<button mat-icon-button (click)="row?.id === call?.id ? skip() : play(row.id)">
<ng-container *ngIf="call && row?.id === call?.id">
<mat-icon>stop</mat-icon>
</ng-container>

View file

@ -582,7 +582,7 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
}
}
skip(options: any): void {
skip(options?: any): void {
if (this.auth) {
this.authPassword.focus();