fix(blogo): infinite recursion on typo in ServeHTTPP

This commit is contained in:
Guz
2025-01-23 15:52:46 -03:00
parent 516d6a308c
commit 71cdd43643

View File

@@ -130,7 +130,7 @@ func (b *blogo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
b.assert.NotNil(r)
if b.server != nil {
b.ServeHTTP(w, r)
b.server.ServeHTTP(w, r)
}
log := b.log.With()