Skip to content

Commit

Permalink
increase limit of search results to 150
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre committed Jun 15, 2013
1 parent e38efd3 commit cc937cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public Cursor search(String query, String table, boolean withSnippets){

return mDatabase.rawQuery("select " + COL_SURA + ", " + COL_AYAH +
", " + whatTextToSelect + " from " + table + " where " + COL_TEXT +
operator + query + endOperator + " limit 50", null);
operator + query + endOperator + " limit 150", null);
}

public void closeDatabase() {
Expand Down

0 comments on commit cc937cb

Please sign in to comment.