Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
Match queries against bookmark URLs as well as titles
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycr committed Aug 15, 2014
1 parent 0022806 commit ccd23b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/acr/browser/thunder/SearchAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ protected FilterResults performFiltering(CharSequence constraint) {
filter.add(mAllBookmarks.get(n));
mBookmarks.add(mAllBookmarks.get(n));
counter++;
} else if (mAllBookmarks.get(n).getUrl().contains(query)) {
filter.add(mAllBookmarks.get(n));
mBookmarks.add(mAllBookmarks.get(n));
counter++;
}

}
Expand Down

0 comments on commit ccd23b3

Please sign in to comment.