Resolve placeholders in entry details url

This commit is contained in:
Jonathan White 2017-10-25 00:01:29 -04:00 committed by thez3ro
parent 8416d69f1e
commit b9fd609bb2
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
3 changed files with 19 additions and 4 deletions

View file

@ -243,7 +243,8 @@ QString Entry::url() const
QString Entry::webUrl() const
{
return resolveUrl(m_attributes->value(EntryAttributes::URLKey));
QString url = resolveMultiplePlaceholders(m_attributes->value(EntryAttributes::URLKey));
return resolveUrl(url);
}
QString Entry::username() const