From 4c074099b8f305758ee88b319c7e0d32c2412038 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 25 Aug 2022 11:19:43 +0200 Subject: generalized interface for an Entity --- cache/repo_cache_bug.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache') diff --git a/cache/repo_cache_bug.go b/cache/repo_cache_bug.go index 4522f1bc..dc2b271c 100644 --- a/cache/repo_cache_bug.go +++ b/cache/repo_cache_bug.go @@ -501,7 +501,7 @@ func (c *RepoCache) RemoveBug(prefix string) error { } c.muBug.Lock() - err = bug.RemoveBug(c.repo, b.Id()) + err = bug.Remove(c.repo, b.Id()) delete(c.bugs, b.Id()) delete(c.bugExcerpts, b.Id()) -- cgit