Skip to content

Commit 4d59279

Browse files
committed
fix: bloomer
1 parent b9a7d29 commit 4d59279

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 7.2.4
4+
5+
**🔄 Modified:**
6+
7+
* `Country::findCountries` → fix bloomer
8+
39
## 7.2.0
410

511
**🔄 Modified:**

inputmask/src/main/kotlin/com/redmadrobot/inputmask/model/Country.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ data class Country(
5959
val excludingTermsLowercased = excludingTerms?.map { it.lowercase() } ?: listOf()
6060
val phoneDigits = phone.filter(Char::isDigit)
6161

62-
return customCountries ?: all.filter {
62+
return (customCountries ?: all).filter {
6363
var include: Boolean = false
6464

6565
if (includingTerms != null) {

0 commit comments

Comments
 (0)