Merge branch '4.0.4-fixes' of github.com:cake-tech/cake_wallet_private into 4.0.4-fixes

This commit is contained in:
M 2020-11-12 10:17:14 +02:00
commit 37d3bf3fa9

View file

@ -1,7 +1,7 @@
String formatAmount(String amount) {
if (!amount.contains('.')) {
if ((!amount.contains('.'))&&(!amount.contains(','))) {
return amount + '.00';
} else if (amount.endsWith('.')) {
} else if ((amount.endsWith('.'))||(amount.endsWith(','))) {
return amount + '00';
}
return amount;