Skip to content

Commit

Permalink
fix filtered decks not appearing in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
MorenoTropical committed Sep 8, 2024
1 parent 015b06f commit bb816f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class DeckSpinnerSelection(
* Displays a [DeckSelectionDialog]
*/
suspend fun displayDeckSelectionDialog() {
val decks = fromCollection(includeFiltered = false).toMutableList()
val decks = fromCollection(includeFiltered = showFilteredDecks).toMutableList()
if (showAllDecks) {
decks.add(SelectableDeck(ALL_DECKS_ID, context.resources.getString(R.string.card_browser_all_decks)))
}
Expand Down

0 comments on commit bb816f8

Please sign in to comment.