Skip to content

Commit

Permalink
fix: bloomer
Browse files Browse the repository at this point in the history
  • Loading branch information
taflanidi committed May 5, 2023
1 parent b9a7d29 commit 4d59279
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 7.2.4

**🔄 Modified:**

* `Country::findCountries` → fix bloomer

## 7.2.0

**🔄 Modified:**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ data class Country(
val excludingTermsLowercased = excludingTerms?.map { it.lowercase() } ?: listOf()
val phoneDigits = phone.filter(Char::isDigit)

return customCountries ?: all.filter {
return (customCountries ?: all).filter {
var include: Boolean = false

if (includingTerms != null) {
Expand Down

0 comments on commit 4d59279

Please sign in to comment.