Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Baltasar Blanco 2026-06-02 15:21:40 -03:00 committed by GitHub
parent 1cef787a49
commit a48b9f623a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -564,7 +564,7 @@ walk: // Outer loop for walking the tree
*value.params = (*value.params)[:i+1]
val := path
if unescape {
if v, err := url.PathUnescape(path); err == nil {
if v, err := url.PathUnescape(val); err == nil {
val = v
}
}