mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-02 19:39:17 +01:00
Fix PAT copy for GetUserByTokenID in SQLite store (#1312)
This commit is contained in:
parent
70c7543e36
commit
fb42fedb58
@ -298,7 +298,7 @@ func (s *SqliteStore) GetUserByTokenID(tokenID string) (*User, error) {
|
|||||||
|
|
||||||
user.PATs = make(map[string]*PersonalAccessToken, len(user.PATsG))
|
user.PATs = make(map[string]*PersonalAccessToken, len(user.PATsG))
|
||||||
for _, pat := range user.PATsG {
|
for _, pat := range user.PATsG {
|
||||||
user.PATs[pat.ID] = &pat
|
user.PATs[pat.ID] = pat.Copy()
|
||||||
}
|
}
|
||||||
|
|
||||||
return &user, nil
|
return &user, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user