Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
Fixed Account#update (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlessenich committed Mar 24, 2024
1 parent 34f5ec7 commit 7a597dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/internal/entities/account_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class AccountImpl extends RestrrEntityImpl implements Account {
if (description != null) 'description': description,
if (iban != null) 'iban': iban,
if (originalBalance != null) 'original_balance': originalBalance,
if (currency != null) 'currency': currency,
if (currency != null) 'currency_id': currency,
});
if (response.hasError) {
throw response.error!;
Expand Down

0 comments on commit 7a597dc

Please sign in to comment.