From 71f9290fdae7551f3d3ada2179ece4084304d734 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 19 Feb 2019 00:19:27 +0100 Subject: identity: store the times properly --- cache/repo_cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache') 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) } -- cgit