Browse Source

bugfix: custom-webui prefix

jamesread 2 years ago
parent
commit
dd11961a11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/httpservers/webuiServer.go

+ 1 - 1
internal/httpservers/webuiServer.go

@@ -120,7 +120,7 @@ func startWebUIServer(cfg *config.Config) {
 
 	mux := http.NewServeMux()
 	mux.Handle("/", http.FileServer(http.Dir(findWebuiDir())))
-	mux.Handle("/custom-webui/", http.FileServer(http.Dir(findCustomWebuiDir())))
+	mux.Handle("/custom-webui/", http.StripPrefix("/custom-webui/", http.FileServer(http.Dir(findCustomWebuiDir()))))
 	mux.HandleFunc("/theme.css", generateThemeCss)
 	mux.HandleFunc("/webUiSettings.json", generateWebUISettings)