We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 008d67e commit c18b027Copy full SHA for c18b027
src/notepadhandler.js
@@ -372,6 +372,22 @@ export class NoteScreenConnection extends CommonConnection {
372
})
373
374
375
+ socket.on('chatquestion', (cmd) => {
376
+ if (cmd.text) {
377
+ const displayname = socket.decoded_token.user.displayname
378
+
379
+ this.notesio.to(notepadscreenid.roomname).emit('chatquestion', {
380
+ displayname: displayname,
381
+ text: cmd.text,
382
+ encData: cmd.encData,
383
+ keyindex: cmd.keyindex,
384
+ iv: cmd.iv,
385
+ resend: !!cmd.resend,
386
+ showSendername: !!cmd.showSendername
387
+ })
388
+ }
389
390
391
socket.on('sendboards', async (cmd) => {
392
await loadlectprom
393
// console.log('notepad connected, send board data')
0 commit comments