diff --git a/src/browser/BrowserService.cpp b/src/browser/BrowserService.cpp index 35db02a05..e0c896eca 100644 --- a/src/browser/BrowserService.cpp +++ b/src/browser/BrowserService.cpp @@ -610,9 +610,8 @@ BrowserService::searchEntries(const QSharedPointer& db, const QString& // Search for additional URL's starting with KP2A_URL for (const auto& key : entry->attributes()->keys()) { - if (key.startsWith(ADDITIONAL_URL) && - handleURL(entry->attributes()->value(key), url, submitUrl) && - !entries.contains(entry)) { + if (key.startsWith(ADDITIONAL_URL) && handleURL(entry->attributes()->value(key), url, submitUrl) + && !entries.contains(entry)) { entries.append(entry); continue; }