We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b4c0a commit fefded1Copy full SHA for fefded1
library/src/main/java/org/xmtp/android/library/Client.kt
@@ -561,7 +561,8 @@ class Client() {
561
562
fun canMessage(addresses: List<String>): Boolean {
563
return runBlocking {
564
- libXMTPClient != null && !libXMTPClient!!.canMessage(addresses).contains(false)
+ libXMTPClient != null && !libXMTPClient!!.canMessage(addresses.map { it.lowercase() })
565
+ .contains(false)
566
}
567
568
0 commit comments