From 337ce15b378daf0fa9da9699ed2ac442bf50f3ad Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Sat, 21 Feb 2026 14:16:38 +0800 Subject: [PATCH] Fix api user other UserInfoPayload Signed-off-by: Asai Neko --- api/user/other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/user/other.go b/api/user/other.go index 39d25d7..bb6a563 100644 --- a/api/user/other.go +++ b/api/user/other.go @@ -82,7 +82,7 @@ func (self *UserHandler) Other(c *gin.Context) { } else if userIdFromUrl != userIdFromHeader { UserInfoPayload = &service_user.UserInfoPayload{ Context: c, - UserId: userIdFromHeader, + UserId: userIdFromUrl, IsOther: true, Data: nil, }