Fix bug with wrong balance

This commit is contained in:
Manfred Karrer 2016-04-05 02:12:31 +02:00
parent 1790dbd542
commit b71ce2fc37

View File

@ -321,8 +321,10 @@ class CreateOfferDataModel extends ActivatableDataModel {
void fundFromSavingsWallet() {
this.useSavingsWallet = true;
updateBalance();
if (!isWalletFunded.get())
if (!isWalletFunded.get()) {
this.useSavingsWallet = false;
updateBalance();
}
}