Fix audio freeze issue

This commit is contained in:
Chrystian Huot 2019-08-14 12:45:11 -04:00
parent cd65e0c9d5
commit a11abcebb8

View file

@ -372,6 +372,7 @@ export class AppRadioService implements OnDestroy {
this._audio.onplay = () => startHandler();
this._audio.onstalled = () => this._audio.play();
this._audio.onsuspend = () => this._audio.play();
this._audio.ontimeupdate = () => progressHandler();
}