Version 4.3.4 - fix endless loop when error on decoding audio while in offline continuous play mode

This commit is contained in:
Chrystian Huot 2020-08-04 09:48:15 -04:00
parent ac7feed973
commit 2389fa431d
5 changed files with 10 additions and 6 deletions

View file

@ -33,5 +33,5 @@
"build": "ng build --base-href ./ --prod",
"start": "ng serve"
},
"version": "4.3.3"
"version": "4.3.4"
}

View file

@ -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);
}

View file

@ -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 {

View file

@ -11,5 +11,5 @@
"start": "node run",
"update": "node update"
},
"version": "4.3.3"
"version": "4.3.4"
}

View file

@ -39,5 +39,5 @@
"build": "webpack",
"start": "nodemon"
},
"version": "4.3.3"
"version": "4.3.4"
}