Skip to content

Commit

Permalink
Fixed tags search (closes #951)
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Jan 5, 2024
1 parent ed07df4 commit fca3d9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1821,8 +1821,8 @@ private void filterByTags() {
.setPositiveButton(R.string.ok, (dialog, which) -> {
var items = ((AlertDialog) dialog).getListView().getCheckedItemPositions();
var selectedTags = new ArrayList<String>();
for(int i = 0; i < items.size(); i++) {
if (items.valueAt(i)) {
for(int i = 0; i < tags.size(); i++) {
if (items.get(i)) {
selectedTags.add(tags.get(i).getText());
}
}
Expand Down

0 comments on commit fca3d9f

Please sign in to comment.