diff options
-rw-r--r-- | src/filterurljob.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/filterurljob.cpp b/src/filterurljob.cpp index c5ffa607..c0632752 100644 --- a/src/filterurljob.cpp +++ b/src/filterurljob.cpp @@ -58,14 +58,15 @@ KUrl FilterUrlJob::url() void FilterUrlJob::run() { - // this should let rekonq filtering URI info and supporting - // the beautiful KDE web browsing shortcuts - + // Bookmarklets handling if (_urlString.startsWith("javascript:")) { _url = KUrl(_urlString); return; } + + // this should let rekonq filtering URI info and supporting + // the beautiful KDE web browsing shortcuts KUriFilterData data(_urlString); data.setCheckForExecutables(false); // if true, queries like "rekonq" or "dolphin" are considered as executables |