fix(storage): Zero allocation issue with fiber (#1273)

* fix(storage): Zero allocation issue with fiber

* ci: Bump Go version
This commit is contained in:
TwiN
2025-09-19 11:38:46 -04:00
committed by GitHub
parent 0d2a55cf11
commit bd793305e9
7 changed files with 12 additions and 9 deletions

View File

@@ -72,5 +72,5 @@ func (r *Result) AddError(error string) {
return
}
}
r.Errors = append(r.Errors, error)
r.Errors = append(r.Errors, error+"")
}