Fix indentation in context.go

This commit is contained in:
Kasidej 2026-01-05 10:45:19 +07:00 committed by GitHub
parent 2ef64e8946
commit 578858229b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1437,7 +1437,7 @@ func (c *Context) Value(key any) any {
return c
}
if val, exists := c.Get(key); exists {
return val
return val
}
if !c.hasRequestContext() {
return nil