diff options
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 28d998f3..8b8234b5 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -348,7 +348,10 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) // ------------------- END WARNING -------------------------------------- // we are sure of the url now, let's add it to history - historyManager()->addHistoryEntry( loadingUrl.prettyUrl() ); + // anyway we store here just http sites because local and ftp ones are + // added trough the protocol handler and the other are ignored + if( url.protocol() == QLatin1String("http") ) + historyManager()->addHistoryEntry( loadingUrl.prettyUrl() ); if (!ReKonfig::openTabsBack()) { |