Skip to content

Commit 7ceaed4

Browse files
authored
fix: add missing hash to the dashboard redirect url
The missing # symbol was causing a 404 error on the webui.
1 parent d962434 commit 7ceaed4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/module/webroot/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88
<script>
9-
window.location.replace("http://127.0.0.1:9999/ui/setup?hostname=127.0.0.1&port=9999&secret=singbox");
9+
window.location.replace("http://127.0.0.1:9999/ui/#/setup?hostname=127.0.0.1&port=9999&secret=singbox");
1010
</script>
1111
</body>
1212
</html>

0 commit comments

Comments
 (0)