diff --git a/osinaweb/support/__pycache__/consumers.cpython-310.pyc b/osinaweb/support/__pycache__/consumers.cpython-310.pyc index e18e7176..e710e6e8 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 6654dd31..3ed706db 100644 --- a/osinaweb/support/consumers.py +++ b/osinaweb/support/consumers.py @@ -184,9 +184,9 @@ class TicketRoomConsumer(WebsocketConsumer): 'connections': event['connections'], 'user': event['user'] } - html = render_to_string("details_templates/partials/recently-online.html", context=context) + html = render_to_string("details_templates/partials/ticket-online-users.html", context=context) self.send(text_data=json.dumps({ - 'event_type': 'user_status', + 'event_type': 'useer_status', 'html': html }))