Skip to content

Commit

Permalink
fix(analysis): Misplaced line
Browse files Browse the repository at this point in the history
  • Loading branch information
HagerDakroury committed Jul 22, 2021
1 parent 9cb55fb commit d310ada
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion analysis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,11 @@ io.on("connection", (socket: any) => {
"emotion update",
JSON.stringify(instructors[meeting])
);
io.to(meeting).emit(
"emotion update",
JSON.stringify(instructors[meeting])
);
}
}
io.to(meeting).emit("emotion update", JSON.stringify(instructors[meeting]));
});
});

0 comments on commit d310ada

Please sign in to comment.