From 77b3cd57f930ec70e6f618da70985e23e5cf76fc Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 19 Oct 2018 01:44:06 +0200 Subject: Integrate FilterTree into browser (#6) - change filter.path to filter.hosts to represent that the setting is only used for hostlist-format lists - change FilterTree::match to use QUrl and not QString --- lib/urlfilter/formats/hostlistrule.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/urlfilter/formats/hostlistrule.cpp') diff --git a/lib/urlfilter/formats/hostlistrule.cpp b/lib/urlfilter/formats/hostlistrule.cpp index f0cb4af..e4561f0 100644 --- a/lib/urlfilter/formats/hostlistrule.cpp +++ b/lib/urlfilter/formats/hostlistrule.cpp @@ -15,9 +15,10 @@ HostlistRule::HostlistRule(const QString &domain, const QString &redirect) this->m_redirect = redirect; } -bool HostlistRule::match(const QString &requestUrl) const +bool HostlistRule::match(const QUrl &requestUrl) const { - return (m_request == requestUrl); + //qDebug("checking [%s] against [%s]", qUtf8Printable(requestUrl.host()), qUtf8Printable(m_request)); + return (m_request == requestUrl.host()); } FilterLeaf::Action HostlistRule::action() const -- cgit v1.2.1