mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Remove credential sorting from Browser Integration (#6353)
This commit is contained in:
parent
439c155552
commit
c19efb5b19
9 changed files with 4 additions and 97 deletions
|
@ -750,14 +750,9 @@ BrowserService::sortEntries(QList<Entry*>& pwEntries, const QString& siteUrlStr,
|
|||
std::sort(keys.begin(), keys.end(), [](int l, int r) { return l > r; });
|
||||
|
||||
QList<Entry*> results;
|
||||
auto sortField = browserSettings()->sortByTitle() ? EntryAttributes::TitleKey : EntryAttributes::UserNameKey;
|
||||
for (auto key : keys) {
|
||||
// Sort same priority entries by Title or UserName
|
||||
auto entries = priorities.values(key);
|
||||
std::sort(entries.begin(), entries.end(), [&sortField](Entry* left, Entry* right) {
|
||||
return QString::localeAwareCompare(left->attribute(sortField), right->attribute(sortField)) < 0;
|
||||
});
|
||||
results << entries;
|
||||
results << priorities.values(key);
|
||||
|
||||
if (browserSettings()->bestMatchOnly() && !results.isEmpty()) {
|
||||
// Early out once we find the highest batch of matches
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue