mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 11:24:00 +00:00
17 lines
355 B
Go
17 lines
355 B
Go
package route
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/go-chi/chi"
|
|
)
|
|
|
|
// When name is composed of a partial escape string, Golang does not unescape it
|
|
func getEscapeParam(r *http.Request, paramName string) string {
|
|
param := chi.URLParam(r, paramName)
|
|
if newParam, err := url.PathUnescape(param); err == nil {
|
|
param = newParam
|
|
}
|
|
return param
|
|
}
|