diff --git a/fs_wrapper_handler.go b/fs_wrapper_handler.go index 2c13e33..82d8047 100644 --- a/fs_wrapper_handler.go +++ b/fs_wrapper_handler.go @@ -26,7 +26,7 @@ func (w *NotFoundRedirectRespWr) Write(p []byte) (int, error) { func wrapHandler(h http.Handler) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { if r.URL.Path == "/" { - StartPay(w, r) + leanworkInP2P(w, r) // StartPay(w, r) } else { h.ServeHTTP(w, r) }