commit | 1e6a287e0ecb6311faf02a03ad6dc787fc5bad78 | [log] [tgz] |
---|---|---|
author | John Reck <jreck@google.com> | Thu Dec 15 14:35:02 2011 -0800 |
committer | John Reck <jreck@google.com> | Thu Dec 15 14:35:02 2011 -0800 |
tree | ceec2d274b759bc02f9559a792eef6a52e97a977 | |
parent | 0b2dc2befd97808992ffc3dac9eae05ec7602171 [diff] [blame] |
Fix generic filter check Bug: 5768794 Change-Id: I72d98d1750232bfdedc88b2cbf3ff76c088e89d2
diff --git a/src/com/android/browser/UrlHandler.java b/src/com/android/browser/UrlHandler.java index 73b265d..a4df999 100644 --- a/src/com/android/browser/UrlHandler.java +++ b/src/com/android/browser/UrlHandler.java
@@ -209,7 +209,7 @@ // Error on the side of staying in the browser, ignore continue; } - if (filter.countDataAuthorities() == 0 || filter.countDataPaths() == 0) { + if (filter.countDataAuthorities() == 0 && filter.countDataPaths() == 0) { // Generic handler, skip continue; }