From 33ceba86da02923f00908ba1eeaae557fa37d391 Mon Sep 17 00:00:00 2001 From: James Moger Date: Sun, 25 Mar 2012 20:29:44 -0400 Subject: [PATCH] Index tags consistently --- src/com/gitblit/LuceneExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/gitblit/LuceneExecutor.java b/src/com/gitblit/LuceneExecutor.java index cd7074b6..25ed9daf 100644 --- a/src/com/gitblit/LuceneExecutor.java +++ b/src/com/gitblit/LuceneExecutor.java @@ -669,7 +669,7 @@ public class LuceneExecutor implements Runnable { // get any annotated commit tags List commitTags = new ArrayList(); - for (RefModel ref : JGitUtils.getTags(repository, true, -1)) { + for (RefModel ref : JGitUtils.getTags(repository, false, -1)) { if (ref.isAnnotatedTag() && ref.getReferencedObjectId().equals(commit.getId())) { commitTags.add(ref.displayName); } -- 2.39.5