From 75337a258e75a1ac19d0257ebe07b31830b32ed3 Mon Sep 17 00:00:00 2001 From: dbera Date: Sun, 12 Nov 2006 22:06:13 +0000 Subject: [PATCH] Show total number of results for google driver too. Helps to know if my query resulted in 1 billion results or 100 results, even though I asked for only the first 100. --- beagled/GoogleDriver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beagled/GoogleDriver.cs b/beagled/GoogleDriver.cs index d5b82e0f..54973238 100644 --- a/beagled/GoogleDriver.cs +++ b/beagled/GoogleDriver.cs @@ -136,7 +136,7 @@ namespace Beagle.Daemon { hits.Add (hit); ++rank; } - result.Add (hits); + result.Add (hits, gsr.estimatedTotalResultsCount); } public string GetSnippet (string[] query_terms, Hit hit) -- 2.11.4.GIT