summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2012-03-25 20:29:44 -0400
committerJames Moger <james.moger@gitblit.com>2012-03-25 20:29:44 -0400
commit33ceba86da02923f00908ba1eeaae557fa37d391 (patch)
treed7d73a2a7a22dd8a528ea124d5fadf4416cee5a9 /src/com
parent4b7b406a6db1c02e6fe899f3fb8e65406f4acffe (diff)
downloadgitblit-33ceba86da02923f00908ba1eeaae557fa37d391.tar.gz
gitblit-33ceba86da02923f00908ba1eeaae557fa37d391.zip
Index tags consistently
Diffstat (limited to 'src/com')
-rw-r--r--src/com/gitblit/LuceneExecutor.java2
1 files changed, 1 insertions, 1 deletions
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<String> commitTags = new ArrayList<String>();
- 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);
}