Skip to content

Commit

Permalink
Update SmartFolderHelper.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
sonora authored Mar 1, 2024
1 parent 36a17c9 commit bd1588f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ class SmartFolderHelper(val app: OsmandApplication) {
}

private fun addTracksToSmartFolders(items: List<TrackItem>, smartFolders: List<SmartFolder>) {
for (item in items) {
for (smartFolder in smartFolders) {
for (smartFolder in smartFolders) {
for (item in items) {
var trackAccepted = true
smartFolder.filters?.let { smartFolderFilters ->
for (filter in smartFolderFilters) {
Expand Down Expand Up @@ -262,4 +262,4 @@ class SmartFolderHelper(val app: OsmandApplication) {
notifyUpdateListeners()
}
}
}
}

0 comments on commit bd1588f

Please sign in to comment.