Skip to content

Commit a0dd30a

Browse files
authored
Fix invalid send funds value (#219)
Remove thousands comma delimiter if inserted value is not an integer
1 parent 67c0ee9 commit a0dd30a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/src/main/java/com/concordium/wallet/uicore/DecimalTextWatcher.kt

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ class DecimalTextWatcher(val maxNumberOfDecimals: Int = 1) : TextWatcher {
2525

2626
override fun afterTextChanged(editable: Editable) {
2727
var str = editable.toString()
28+
29+
// Remove thousands comma delimiter if inserted value is not an integer
30+
if (str.contains(",") && str.contains(".")) {
31+
str = str.replace(",", "")
32+
}
33+
2834
// Replace the non decimal separator with the decimal separator
2935
if ("." != "" + separator) {
3036
if (str.indexOf(",") > -1) {

0 commit comments

Comments
 (0)