]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: remove duplicate base path in websocket urls (#10194)
authorrobertmx <robert.marx@mailbox.org>
Mon, 16 Jun 2025 17:50:15 +0000 (19:50 +0200)
committerGitHub <noreply@github.com>
Mon, 16 Jun 2025 17:50:15 +0000 (10:50 -0700)
src/paperless/urls.py

index 39819fd3d1a889c02347b3cfc2ec10e8b327f0da..007d833555ce2f8baa0f321330c41144310ccee7 100644 (file)
@@ -363,7 +363,7 @@ 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).