From 9092c3a87f0b949598d73ca9d545b91cefa15fb0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 15 Feb 2018 16:22:29 +0100 Subject: [PATCH] urlmatch: Increase debuggability --- qutebrowser/utils/urlmatch.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/qutebrowser/utils/urlmatch.py b/qutebrowser/utils/urlmatch.py index 0410090f2..bd5f17fa5 100644 --- a/qutebrowser/utils/urlmatch.py +++ b/qutebrowser/utils/urlmatch.py @@ -236,7 +236,12 @@ class UrlPattern: if self._match_all: return True - # FIXME ignore host for file:// like Chromium? - return (self._matches_host(qurl.host()) and - self._matches_port(qurl.port()) and - self._matches_path(qurl.path())) + # FIXME ignore for file:// like Chromium? + if not self._matches_host(qurl.host()): + return False + if not self._matches_port(qurl.port()): + return False + if not self._matches_path(qurl.path()): + return False + + return True