mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Add support for Browser statistics (#7197)
Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
parent
15d1b2f0ab
commit
cd642e7fee
13 changed files with 784 additions and 6 deletions
|
@ -355,6 +355,26 @@ QString Entry::url() const
|
|||
return m_attributes->value(EntryAttributes::URLKey);
|
||||
}
|
||||
|
||||
QStringList Entry::getAllUrls() const
|
||||
{
|
||||
QStringList urlList;
|
||||
|
||||
if (!url().isEmpty()) {
|
||||
urlList << url();
|
||||
}
|
||||
|
||||
for (const auto& key : m_attributes->keys()) {
|
||||
if (key.startsWith("KP2A_URL")) {
|
||||
auto additionalUrl = m_attributes->value(key);
|
||||
if (!additionalUrl.isEmpty()) {
|
||||
urlList << additionalUrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return urlList;
|
||||
}
|
||||
|
||||
QString Entry::webUrl() const
|
||||
{
|
||||
QString url = resolveMultiplePlaceholders(m_attributes->value(EntryAttributes::URLKey));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue