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;
               }