diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index 35b3d157..51803a91 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ diff --git a/osinaweb/static/js/tickets/tickets-room.js b/osinaweb/static/js/tickets/tickets-room.js index 9a4a0000..6118a987 100644 --- a/osinaweb/static/js/tickets/tickets-room.js +++ b/osinaweb/static/js/tickets/tickets-room.js @@ -34,6 +34,7 @@ function app(socket) { if (this.socket && this.socket.readyState === WebSocket.OPEN) { clearTimeout(this.typingTimeout); const userId = document.getElementById('userId').textContent.trim(); + console.log(userId); const data = { event_type: 'typing', user_id: userId}; this.socket.send(JSON.stringify(data));