aboutsummaryrefslogtreecommitdiff
path: root/plugin/notes-server/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/notes-server/index.js')
-rw-r--r--plugin/notes-server/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js
index fc66a26..b95f071 100644
--- a/plugin/notes-server/index.js
+++ b/plugin/notes-server/index.js
@@ -22,10 +22,12 @@ io.on( 'connection', function( socket ) {
});
socket.on( 'statechanged', function( data ) {
+ delete data.state.overview;
socket.broadcast.emit( 'statechanged', data );
});
socket.on( 'statechanged-speaker', function( data ) {
+ delete data.state.overview;
socket.broadcast.emit( 'statechanged-speaker', data );
});