diff --git a/chat/routing.py b/chat/routing.py index c799d8a..ddcf47d 100644 --- a/chat/routing.py +++ b/chat/routing.py @@ -2,5 +2,5 @@ from django.urls import re_path from . import consumers websocket_urlpatterns = [ - re_path(r'ws/chat/(?P\d+)/$', consumers.ChatConsumer.as_asgi()) + re_path(r'ws/chat/(?P\d+)$', consumers.ChatConsumer.as_asgi()) ]