diff options
Diffstat (limited to 'cache/repo_cache.go')
-rw-r--r-- | cache/repo_cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index d5768125..e87119fe 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -712,7 +712,7 @@ func (c *RepoCache) ResolveIdentityPrefix(prefix string) (*IdentityCache, error) // preallocate but empty matching := make([]string, 0, 5) - for id := range c.identities { + for id := range c.identitiesExcerpts { if strings.HasPrefix(id, prefix) { matching = append(matching, id) } |