Commit e01332b 1 parent b4be3cd commit e01332b Copy full SHA for e01332b
File tree 1 file changed +2
-2
lines changed
example/src/main/java/org/xmtp/android/example/conversation
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class NewGroupBottomSheet : BottomSheetDialogFragment() {
58
58
val input = binding.addressInput1.text.trim()
59
59
val matcher = ADDRESS_PATTERN .matcher(input)
60
60
if (matcher.matches()) {
61
- addresses.add(input.toString().lowercase() )
61
+ addresses.add(input.toString())
62
62
binding.addressInput2.visibility = VISIBLE
63
63
}
64
64
}
@@ -68,7 +68,7 @@ class NewGroupBottomSheet : BottomSheetDialogFragment() {
68
68
val input = binding.addressInput2.text.trim()
69
69
val matcher = ADDRESS_PATTERN .matcher(input)
70
70
if (matcher.matches()) {
71
- addresses.add(input.toString().lowercase() )
71
+ addresses.add(input.toString())
72
72
viewModel.createGroup(addresses)
73
73
}
74
74
}
You can’t perform that action at this time.
0 commit comments