diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index 47991b88..dfac1f40 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ diff --git a/osinaweb/support/__pycache__/consumers.cpython-310.pyc b/osinaweb/support/__pycache__/consumers.cpython-310.pyc index 65377bf6..10355625 100644 Binary files a/osinaweb/support/__pycache__/consumers.cpython-310.pyc and b/osinaweb/support/__pycache__/consumers.cpython-310.pyc differ diff --git a/osinaweb/support/consumers.py b/osinaweb/support/consumers.py index 3c9155cb..5051ff68 100644 --- a/osinaweb/support/consumers.py +++ b/osinaweb/support/consumers.py @@ -172,7 +172,7 @@ class TicketRoomConsumer(WebsocketConsumer): connections = TicketConnection.objects.filter(ticket=self.ticket, terminated_at__isnull=True) event = { 'type': 'user_connection_handler', - 'user': self.scope['user'], + 'user': self.user, 'connections': connections, } async_to_sync(self.channel_layer.group_send)(