fix: allow non-Stringer using %v format (unsafe but does the job)
This commit is contained in:
parent
346cc4e557
commit
2a17ba2f72
12
handler.go
12
handler.go
|
@ -59,13 +59,11 @@ func (s Handler) resolve(w http.ResponseWriter, r *http.Request) {
|
|||
for b, perm := range list {
|
||||
scope[a][b] = perm
|
||||
for name, value := range input.Data {
|
||||
if stringer, ok := value.(fmt.Stringer); ok {
|
||||
scope[a][b] = strings.ReplaceAll(
|
||||
scope[a][b],
|
||||
fmt.Sprintf("[%s]", name),
|
||||
fmt.Sprintf("[%s]", stringer),
|
||||
)
|
||||
}
|
||||
scope[a][b] = strings.ReplaceAll(
|
||||
scope[a][b],
|
||||
fmt.Sprintf("[%s]", name),
|
||||
fmt.Sprintf("[%v]", value),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue