This commit is contained in:
dawg 2025-11-29 10:04:08 -03:00 committed by GitHub
commit 7e030096d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ func stripParam(param, endpoint string) string {
}
if val := values.Get(param); val != "" {
values.Set(param, val[:(len(val)/2)]+"...")
values.Set(param, val[:min(len(val)/2, 5)]+"...")
u.RawQuery = values.Encode()
return u.String()
}