We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9a7d29 commit 4d59279Copy full SHA for 4d59279
2 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## 7.2.4
4
+
5
+**🔄 Modified:**
6
7
+* `Country::findCountries` → fix bloomer
8
9
## 7.2.0
10
11
**🔄 Modified:**
inputmask/src/main/kotlin/com/redmadrobot/inputmask/model/Country.kt
@@ -59,7 +59,7 @@ data class Country(
59
val excludingTermsLowercased = excludingTerms?.map { it.lowercase() } ?: listOf()
60
val phoneDigits = phone.filter(Char::isDigit)
61
62
- return customCountries ?: all.filter {
+ return (customCountries ?: all).filter {
63
var include: Boolean = false
64
65
if (includingTerms != null) {
0 commit comments