Skip to content

Commit

Permalink
fix: default tag filters are too stricut
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Apr 21, 2024
1 parent db1b9bd commit 2f53221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/bnyro/wallpaper/api/Api.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abstract class Api {
}

fun getTags(): List<String> {
return getPref(tagsKey, "sunset,portrait,display").split(",").filter {
return getPref(tagsKey, "sunset").split(",").filter {
it.isNotBlank()
}
}
Expand Down

0 comments on commit 2f53221

Please sign in to comment.