v0.0.228 bf

This commit is contained in:
Mike Schwörer 2023-08-08 15:33:52 +02:00
parent 376c6cab50
commit 87a004e577
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ func (w *GinRouteBuilder) Use(middleware ...gin.HandlerFunc) *GinRouteBuilder {
func (w *GinRouteBuilder) Handle(handler WHandlerFunc) {
if w.routes.wrapper.bufferBody {
arr := make([]gin.HandlerFunc, len(w.handlers)+1)
arr := make([]gin.HandlerFunc, 0, len(w.handlers)+1)
arr = append(arr, BodyBuffer())
arr = append(arr, w.handlers...)
w.handlers = arr

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.227"
const GoextVersion = "0.0.228"
const GoextVersionTimestamp = "2023-08-08T15:28:29+0200"
const GoextVersionTimestamp = "2023-08-08T15:33:52+0200"