diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-03-09 17:19:59 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-03-09 17:19:59 +0100 |
commit | 898f6fe21bdc62ac58c96c5f127547575df2c3eb (patch) | |
tree | 57a6707c4e1cd142cf2e00462dc86fb919fca5b9 /src | |
parent | rekonq 0.6.87 (diff) | |
parent | Return false for null mimetypes (diff) | |
download | rekonq-898f6fe21bdc62ac58c96c5f127547575df2c3eb.tar.xz |
Merge branch 'master' of git.kde.org:rekonq
Diffstat (limited to 'src')
-rw-r--r-- | src/adblock/adblockrulenullimpl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/adblock/adblockrulenullimpl.cpp b/src/adblock/adblockrulenullimpl.cpp index 7f6ab765..7c6cf802 100644 --- a/src/adblock/adblockrulenullimpl.cpp +++ b/src/adblock/adblockrulenullimpl.cpp @@ -117,6 +117,10 @@ bool AdBlockRuleNullImpl::isNullFilter(const QString &filter) // collapse if (option == QL1S("collapse")) return true; + + // Ignore null mimetypes + if (option == QL1S("")) + return false; } return false; |