Commit 3f214f6a authored by Sebastian Dröge's avatar Sebastian Dröge
Browse files

Remove some debug output from JavaScript

parent 513c203d
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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) {