Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Sep 18, 2019
1 parent 96e0b82 commit 29531f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oauth2/fosite_store_memory.go
Expand Up @@ -99,7 +99,7 @@ func (s *FositeMemoryStore) GetClients(ctx context.Context, limit, offset int) (
}

clients := map[string]client.Client{}
for _, c := range interim {
for _, c := range interim {
clients[c.GetID()] = c
}

Expand Down
2 changes: 1 addition & 1 deletion oauth2/fosite_store_sql.go
Expand Up @@ -231,7 +231,7 @@ func (s *FositeSQLStore) GetClients(ctx context.Context, limit, offset int) (map
}

clients := map[string]client.Client{}
for _, c := range interim {
for _, c := range interim {
clients[c.GetID()] = c
}

Expand Down

0 comments on commit 29531f2

Please sign in to comment.