Fix parsing of transaction search results.
Build and Deploy API / build-and-deploy (push) Successful in 1m30s
Details
Build and Deploy API / build-and-deploy (push) Successful in 1m30s
Details
This commit is contained in:
parent
c5c9a57113
commit
9ff1bb2839
|
|
@ -437,6 +437,10 @@ class SqliteTransactionRepository : TransactionRepository {
|
||||||
app ~= item;
|
app ~= item;
|
||||||
item.id = 0;
|
item.id = 0;
|
||||||
item.tags = [];
|
item.tags = [];
|
||||||
|
item.vendor = Optional!(TransactionsListItem.Vendor).empty();
|
||||||
|
item.category = Optional!(TransactionsListItem.Category).empty();
|
||||||
|
item.creditedAccount = Optional!(TransactionsListItem.Account).empty();
|
||||||
|
item.debitedAccount = Optional!(TransactionsListItem.Account).empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t rowCount = 0;
|
size_t rowCount = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue