1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

HtmlImporter: Allow to import bookmarks with empty name

Url will be used as title in this case.

See #2431
This commit is contained in:
David Rosca 2017-10-08 13:20:29 +02:00
parent e267b47fb1
commit 48d18a3b35

View File

@ -1,6 +1,6 @@
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -152,11 +152,11 @@ BookmarkItem* HtmlImporter::importBookmarks()
start += posOfLink + rx.cap(0).size();
if (linkName.isEmpty() || url.isEmpty() || url.scheme() == QL1S("place") || url.scheme() == QL1S("about"))
if (url.isEmpty() || url.scheme() == QL1S("place") || url.scheme() == QL1S("about"))
continue;
BookmarkItem* b = new BookmarkItem(BookmarkItem::Url, folders.isEmpty() ? root : folders.last());
b->setTitle(linkName);
b->setTitle(linkName.isEmpty() ? url.toString() : linkName);
b->setUrl(url);
}
}