fix a few bugs with the liveview

This commit is contained in:
Ross
2026-06-16 22:17:17 +01:00
parent dbb762bb09
commit 86a1a935e1
4 changed files with 34 additions and 4 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'^ws/multiuser/(?P<room_name>[\w-]+)/$', consumers.MultiuserConsumer.as_asgi()),
re_path(r'^/ws/multiuser/(?P<room_name>[\w-]+)/$', consumers.MultiuserConsumer.as_asgi()),
]