diff options
Diffstat (limited to 'cache/repo_cache.go')
-rw-r--r-- | cache/repo_cache.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index e87119fe..78633a69 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -735,8 +735,8 @@ func (c *RepoCache) ResolveIdentityImmutableMetadata(key string, value string) ( // preallocate but empty matching := make([]string, 0, 5) - for id, i := range c.identities { - if i.ImmutableMetadata()[key] == value { + for id, i := range c.identitiesExcerpts { + if i.ImmutableMetadata[key] == value { matching = append(matching, id) } } |