diff options
Diffstat (limited to 'src/com/android/browser/provider/BrowserProvider2.java')
-rw-r--r-- | src/com/android/browser/provider/BrowserProvider2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/browser/provider/BrowserProvider2.java b/src/com/android/browser/provider/BrowserProvider2.java index 305c794..d154f20 100644 --- a/src/com/android/browser/provider/BrowserProvider2.java +++ b/src/com/android/browser/provider/BrowserProvider2.java @@ -1266,11 +1266,11 @@ public class BrowserProvider2 extends SQLiteContentProvider { } } - // Filters out the client=ms- param for search urls + // Filters out the client= param for search urls private String filterSearchClient(String url) { // remove "client" before updating it to the history so that it wont // show up in the auto-complete list. - int index = url.indexOf("client=ms-"); + int index = url.indexOf("client="); if (index > 0 && url.contains(".google.")) { int end = url.indexOf('&', index); if (end > 0) { |