diff --git a/client/app.js b/client/app.js index 1717793..c2093e4 100644 --- a/client/app.js +++ b/client/app.js @@ -183,7 +183,11 @@ function russianRoulette({ userDisplayName, message }) { }, 1250); } - audio.play(); + try { + audio.play(); + } catch(e) { + // user didn't interact with the document first + } } }); }