SecUSo / privacy-friendly-passwordgenerator

Privacy Friendly App that deterministically generates passwords from parameters and a master password.
https://secuso.org/pfa
GNU General Public License v3.0
45 stars 16 forks source link

Fix wrong item selected when list is filtered #22

Closed Henne1191 closed 6 years ago

Henne1191 commented 6 years ago

The onClickListener does not take into account that the ids for entries in the password list change once a filter/search is applied. If searching for a specific password entry the list is filtered correctly, but when clicking on the entry the password generation dialog will be filled with the data of a different password list entry.

E.g. if you search for "domain" within the App's example data, it will show the correct entry in the list. But if you click on that entry, it will generate the password for the "email" entry (because that is the first entry in the unfiltered list).

Yonjuni commented 6 years ago

Thanks :)