From 6ed4b8b7a1185ad278eb2e40b32e859f828233d9 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 23 Aug 2022 14:48:49 +0200 Subject: webui: adapt to CombinedId --- 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 226c4c13..4522f1bc 100644 --- a/cache/repo_cache_bug.go +++ b/cache/repo_cache_bug.go @@ -290,7 +290,7 @@ func (c *RepoCache) ResolveComment(prefix string) (*BugCache, entity.CombinedId, } for _, comment := range b.Snapshot().Comments { - if comment.TargetId().HasPrefix(prefix) { + if comment.CombinedId().HasPrefix(prefix) { matchingBugIds = append(matchingBugIds, bugId) matchingBug = b matchingCommentId = comment.CombinedId() -- cgit