mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
18 lines
358 B
Go
18 lines
358 B
Go
package route
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
)
|
|
|
|
// 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
|
|
}
|