mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
fix for loops now have diffrent variables. dont know why it worked before
This commit is contained in:
@@ -581,8 +581,8 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
||||
//allows to insert usernames and passwords multiple times
|
||||
if (!list.isEmpty()) {
|
||||
for (int i = 1; i < num; i++) {
|
||||
for (int i = 0; i < resolved.size(); i++) {
|
||||
list.append(list.at(i)->clone());
|
||||
for (int j = 0; j < resolved.size(); j++) {
|
||||
list.append(list.at(j)->clone());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user