mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
Version 4.3.4 - fix endless loop when error on decoding audio while in offline continuous play mode
This commit is contained in:
parent
ac7feed973
commit
2389fa431d
|
|
@ -33,5 +33,5 @@
|
|||
"build": "ng build --base-href ./ --prod",
|
||||
"start": "ng serve"
|
||||
},
|
||||
"version": "4.3.3"
|
||||
"version": "4.3.4"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -256,11 +256,11 @@ export class AppRdioScannerComponent implements AfterViewInit, OnDestroy {
|
|||
this.call = undefined;
|
||||
}
|
||||
|
||||
this.callPending = undefined;
|
||||
|
||||
if (event.call) {
|
||||
this.call = this.transformCall(event.call);
|
||||
|
||||
this.callPending = undefined;
|
||||
|
||||
if (this.liveFeedOffline) {
|
||||
this.setOfflineQueueCount(this.call.id);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -363,7 +363,11 @@ export class AppRdioScannerService implements OnDestroy {
|
|||
}
|
||||
});
|
||||
});
|
||||
}, () => this.skip({ delay: false }));
|
||||
}, () => {
|
||||
this.event.emit({ call: this.call, queue: this.callQueue.length });
|
||||
|
||||
this.skip({ delay: false });
|
||||
});
|
||||
}
|
||||
|
||||
queue(call: RdioScannerCall): void {
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@
|
|||
"start": "node run",
|
||||
"update": "node update"
|
||||
},
|
||||
"version": "4.3.3"
|
||||
"version": "4.3.4"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,5 +39,5 @@
|
|||
"build": "webpack",
|
||||
"start": "nodemon"
|
||||
},
|
||||
"version": "4.3.3"
|
||||
"version": "4.3.4"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue