Skip to content

Commit

Permalink
fix: detection of no reply sms
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Feb 6, 2025
1 parent 6f26bd1 commit 5152b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fun SmsThreadScreen(

// can't respond to address short codes that don't include a number
val showSendButton = remember {
address.any { !it.isLetter() }
address.any { it.isDigit() }
}

Row(
Expand Down

0 comments on commit 5152b29

Please sign in to comment.