diff --git a/front/src/api/player.ts b/front/src/api/player.ts index f84eb62f9..6a1ea4582 100644 --- a/front/src/api/player.ts +++ b/front/src/api/player.ts @@ -131,7 +131,12 @@ export class HTMLSound implements Sound { } async play () { - return this.#audio.play() + try { + await this.#audio.play() + } catch (err) { + console.error('>> AUDIO PLAY ERROR', err, this) + this.isErrored.value = true + } } async pause () {