Skip to content

Commit 6b74630

Browse files
committed
feat: redirect to /chat/embed instead of /chat from the root
1 parent 62568da commit 6b74630

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/httpapi/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,5 +314,5 @@ func (s *Server) registerStaticFileRoutes(chatBasePath string) {
314314
}
315315

316316
func (s *Server) redirectToChat(w http.ResponseWriter, r *http.Request) {
317-
http.Redirect(w, r, "/chat", http.StatusTemporaryRedirect)
317+
http.Redirect(w, r, "/chat/embed", http.StatusTemporaryRedirect)
318318
}

0 commit comments

Comments
 (0)