From 7b5278304d3922ed48265232ed28b04ae5b2f8ac Mon Sep 17 00:00:00 2001 From: byhsu Date: Mon, 8 May 2023 20:42:14 -0700 Subject: [PATCH] update SetUserIdentifier --- auth/identity_context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/identity_context.go b/auth/identity_context.go index 1201c303d..57521826b 100644 --- a/auth/identity_context.go +++ b/auth/identity_context.go @@ -91,7 +91,7 @@ func (c IdentityContext) UserIdentifier() string { } // SetUserIdentifier allows you to explicitly set user identifier -func (c IdentityContext) SetUserIdentifier(id string) { +func (c *IdentityContext) SetUserIdentifier(id string) { c.userIdentifier = id }