diff --git a/src/Sound.ts b/src/Sound.ts index b319d76..0feace4 100644 --- a/src/Sound.ts +++ b/src/Sound.ts @@ -129,7 +129,7 @@ export class Sound extends EmittenCommon { stop() { this.#setState('stopping'); - this.#source.stop(); + if (this.#started) this.#source.stop(); this.#source.disconnect(); this.empty();