Include all enabled default corpora in the first batch

This avoids a problem where default corpora where not queried
because the number of default corpora was larger than the number
of promoted sources.

Bug: http://b/issue?id=2750913
Change-Id: I2a93ea8c1df930499f02088683c4268340099a77
diff --git a/src/com/android/quicksearchbox/SuggestionsProviderImpl.java b/src/com/android/quicksearchbox/SuggestionsProviderImpl.java
index 181d80a..8847f46 100644
--- a/src/com/android/quicksearchbox/SuggestionsProviderImpl.java
+++ b/src/com/android/quicksearchbox/SuggestionsProviderImpl.java
@@ -153,7 +153,6 @@
         }
 
         int initialBatchSize = countDefaultCorpora(corporaToQuery);
-        initialBatchSize = Math.min(initialBatchSize, mConfig.getNumPromotedSources());
         if (initialBatchSize == 0) {
             initialBatchSize = mConfig.getNumPromotedSources();
         }