]> git.cworth.org Git - zombocom-ai/blobdiff - index.js
Fix some overloaded use of "name" variable
[zombocom-ai] / index.js
index 2c980dc796d3d1992db34646ed09d46e8de64c08..11fac962fa3a4955c721f11c19f887718fbe55dd 100644 (file)
--- a/index.js
+++ b/index.js
@@ -85,11 +85,14 @@ io.on('connection', (socket) => {
     });
 
     socket.on('set-name', (name) => {
+        console.log("Received set-name event: " + name);
         socket.request.session.name = name;
+        socket.request.session.save();
     });
 
     // When any client comments, send that to all clients (including sender)
     socket.on('comment', (comment) => {
+        comment.name = socket.request.session.name;
         io.emit('comment', comment);
         state.comments.push(comment);
     });
@@ -108,7 +111,7 @@ io.on('connection', (socket) => {
             child.stdout.on('data', (data) => {
                 const images = JSON.parse(data);
                 images.forEach((image) => {
-                    console.log(`Emitting image to clients: ${image}`);
+                    image.index = state.images.length;
                     io.emit('image', image);
                     state.images.push(image);
                 });