diff options
author | Michael Muré <batolettre@gmail.com> | 2022-08-25 11:19:43 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-08-25 11:20:36 +0200 |
commit | 4c074099b8f305758ee88b319c7e0d32c2412038 (patch) | |
tree | ee1817f5101b3fbabfbaa3df2cba81330d8b8ec0 /cache/repo_cache_bug.go | |
parent | 5c91174a84592b027c1b432a72ebf2974ec0e4c5 (diff) | |
download | git-bug-4c074099b8f305758ee88b319c7e0d32c2412038.tar.gz |
generalized interface for an Entity
Diffstat (limited to 'cache/repo_cache_bug.go')
-rw-r--r-- | cache/repo_cache_bug.go | 2 |
1 files changed, 1 insertions, 1 deletions
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()) |