Skip to content

Commit

Permalink
Fix allQueryItems function in selection store (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadymmarkov authored Mar 4, 2020
1 parent 7b88584 commit c5d979f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Charcoal/Selection/FilterSelectionStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public extension FilterSelectionStore {
}

func allQueryItems(for filterContainer: FilterContainer) -> [URLQueryItem] {
filterContainer.allFilters.reduce([]) { $0 + queryItems(for: $1) }
filterContainer.allFilters.reduce([]) { $0 + allQueryItems(for: $1) }
}

func allQueryItems(for filter: Filter) -> [URLQueryItem] {
Expand Down

0 comments on commit c5d979f

Please sign in to comment.