Refactoring mediaSessionInit variable (part 2)
This commit is contained in:
parent
cb3224592d
commit
a99621c24f
1 changed files with 3 additions and 4 deletions
|
@ -588,7 +588,6 @@ class App extends HTMLElement {
|
|||
await this._connect();
|
||||
this.dispatchEvent(new CustomEvent("load"));
|
||||
|
||||
this.mediaSessionInit = false;
|
||||
this._initMediaHandler();
|
||||
}
|
||||
|
||||
|
@ -644,11 +643,11 @@ class App extends HTMLElement {
|
|||
node("source", {src: 'https://raw.githubusercontent.com/anars/blank-audio/master/10-seconds-of-silence.mp3'}, '', audio);
|
||||
|
||||
// Init event session (play audio) on click (because restrictions by web browsers)
|
||||
let mediaSessionInit = false;
|
||||
window.addEventListener('click', () => {
|
||||
if (!this.mediaSessionInit) {
|
||||
if (mediaSessionInit) return;
|
||||
mediaSessionInit = true;
|
||||
audio.play();
|
||||
this.mediaSessionInit = true;
|
||||
}
|
||||
});
|
||||
|
||||
// mediaSession define metadata
|
||||
|
|
Loading…
Reference in a new issue