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 3d8b352b..f207e984 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -555,7 +555,7 @@ func (c *RepoCache) ResolveIdentity(id string) (*identity.Identity, error) { return cached, nil } - i, err := identity.Read(c.repo, id) + i, err := identity.ReadLocal(c.repo, id) if err != nil { return nil, err } |