Merge pull request #3123 from openimsdk/cherry-pick-96baa5a

fix: check error in BatchSetTokenMapByUidPid [Created by @icey-yu from #3076]
This commit is contained in:
chao 2025-02-08 16:34:22 +08:00 committed by GitHub
commit 456ef4742b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,16 +59,15 @@ func (a *authDatabase) BatchSetTokenMapByUidPid(ctx context.Context, tokens []st
setMap := make(map[string]map[string]any)
for _, token := range tokens {
claims, err := tokenverify.GetClaimFromToken(token, authverify.Secret(a.accessSecret))
key := cachekey.GetTokenKey(claims.UserID, claims.PlatformID)
if err != nil {
continue
}
key := cachekey.GetTokenKey(claims.UserID, claims.PlatformID)
if v, ok := setMap[key]; ok {
v[token] = constant.KickedToken
} else {
if v, ok := setMap[key]; ok {
v[token] = constant.KickedToken
} else {
setMap[key] = map[string]any{
token: constant.KickedToken,
}
setMap[key] = map[string]any{
token: constant.KickedToken,
}
}
}