mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
Fix queued calls not playing after stopping a stored call from the search panel
This commit is contained in:
parent
a0ae91226d
commit
707d07ab80
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -582,7 +582,7 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
|
|||
}
|
||||
}
|
||||
|
||||
skip(options: any): void {
|
||||
skip(options?: any): void {
|
||||
if (this.auth) {
|
||||
this.authPassword.focus();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue