Fix issue with exporting invalid e164s.

This commit is contained in:
Greyson Parrelli
2025-02-14 13:41:39 -05:00
parent 6a1032577c
commit de129c1310

View File

@@ -134,5 +134,5 @@ private fun String.e164ToLong(): Long? {
this
}
return fixed.toLongOrNull()
return fixed.toLongOrNull()?.takeUnless { it == 0L }
}