diff --git a/server/static/scripts.js b/server/static/scripts.js index c9d75841582d8c3d4ce596db825acca73d62b9b5..d9d3395ce0f7a523d07c3d841b54f0bde36b7a46 100644 --- a/server/static/scripts.js +++ b/server/static/scripts.js @@ -89,7 +89,6 @@ function updateRooms() { }); if (playing_room && !found_playing_room) { - console.debug('playing room disappeared'); pauseRoom(); } @@ -104,7 +103,6 @@ function playRoom(id) { if (playing_room != null && playing_room != id) { pauseRoom(); } - console.debug('playing ' + id); playing_room = id; connectWebsocket(); @@ -121,8 +119,6 @@ function pauseRoom() { return; } - console.debug('pausing ' + playing_room); - audio_player.srcObject = null; if (peer_connection != null) {