fix: middleware

This commit is contained in:
Kevin Franklin Kim 2024-03-12 08:46:25 +01:00
parent 2c68979504
commit 14ce26b622
No known key found for this signature in database

View File

@ -10,7 +10,7 @@ func MiddlewareRichsstsse(next ClientHandler) ClientHandler {
v := ""
return func(r *http.Request, event *Event) error {
event.Richsstsse = &v
return nil
return next(r, event)
}
}