Remove console error for muted autoplay block

Commented out the console.error statement that logged muted autoplay block errors to reduce unnecessary console output.
This commit is contained in:
Yiannis Christodoulou 2025-10-06 17:19:59 +03:00
parent d29c415d64
commit ae3b013188

View File

@ -43,7 +43,7 @@ export class AutoplayHandler {
this.restoreSound(userInteracted); this.restoreSound(userInteracted);
} }
} catch (mutedError) { } catch (mutedError) {
console.error('❌ Even muted autoplay was blocked:', mutedError.message); // console.error('❌ Even muted autoplay was blocked:', mutedError.message);
} }
} }
} }