From fb15c2c3a50aa4fe33b6bdfc9f16d759336caa6c Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Sun, 19 Feb 2012 15:27:53 -0500
Subject: [PATCH] Properly index blobs on a branch

---
 src/com/gitblit/models/SearchResult.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/com/gitblit/models/SearchResult.java b/src/com/gitblit/models/SearchResult.java
index 4a03a70..2fa0db4 100644
--- a/src/com/gitblit/models/SearchResult.java
+++ b/src/com/gitblit/models/SearchResult.java
@@ -27,6 +27,8 @@
 	public String summary;
 	
 	public String repository;
+	
+	public String branch;
 
 	public String id;
 
@@ -39,6 +41,6 @@
 
 	@Override
 	public String toString() {
-		return  score + " : " + type.name() + " : " + repository + " : " + id;
+		return  score + " : " + type.name() + " : " + repository + " : " + id + " (" + branch + ")";
 	}
 }
\ No newline at end of file

--
Gitblit v1.9.1