mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-11-17 04:16:54 -06:00
Fix: remove duplicate base path in websocket urls (#10194)
This commit is contained in:
@@ -363,7 +363,7 @@ urlpatterns = [
|
|||||||
|
|
||||||
|
|
||||||
websocket_urlpatterns = [
|
websocket_urlpatterns = [
|
||||||
path(settings.BASE_URL.lstrip("/") + "ws/status/", StatusConsumer.as_asgi()),
|
path("ws/status/", StatusConsumer.as_asgi()),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Text in each page's <h1> (and above login form).
|
# Text in each page's <h1> (and above login form).
|
||||||
|
|||||||
Reference in New Issue
Block a user