From 578858229b5dcb8a09d19c075d19f5c736e51dc6 Mon Sep 17 00:00:00 2001 From: Kasidej Date: Mon, 5 Jan 2026 10:45:19 +0700 Subject: [PATCH] Fix indentation in context.go --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index 8382c168..60b4712c 100644 --- a/context.go +++ b/context.go @@ -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