From 45f5f852b71a63c142bca8b05efe53eebf142594 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 13 Aug 2022 12:08:48 +0200 Subject: core: generalized resolvers to resolve any entity time when unmarshalling an operation --- cache/repo_cache_common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache/repo_cache_common.go') diff --git a/cache/repo_cache_common.go b/cache/repo_cache_common.go index 66797e80..49ec72d0 100644 --- a/cache/repo_cache_common.go +++ b/cache/repo_cache_common.go @@ -118,7 +118,7 @@ func (c *RepoCache) MergeAll(remote string) <-chan entity.MergeResult { } } - results = bug.MergeAll(c.repo, remote, author) + results = bug.MergeAll(c.repo, c.resolvers, remote, author) for result := range results { out <- result -- cgit