From 4fea450fd3edfba6bb9e2c3c0a9231c6d227a09c Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Thu, 23 Feb 2012 19:49:46 -0500
Subject: [PATCH] Fixed nullpointer on pushing to an empty repository (issue 69)

---
 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