Commit eda1788 1 parent c6152b0 commit eda1788 Copy full SHA for eda1788
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ namespace Nickvision::Money::Shared::Models
154
154
{
155
155
return ;
156
156
}
157
- metadata = m_metadata ;
157
+ m_metadata = metadata ;
158
158
// TODO: Update database
159
159
}
160
160
@@ -163,7 +163,7 @@ namespace Nickvision::Money::Shared::Models
163
163
return m_groups;
164
164
}
165
165
166
- const std::vector<std::string>& getTags () const
166
+ const std::vector<std::string>& Account:: getTags () const
167
167
{
168
168
return m_tags;
169
169
}
@@ -197,7 +197,7 @@ namespace Nickvision::Money::Shared::Models
197
197
Account accountToSend{ transfer.getDestinationAccountPath () };
198
198
if (accountToSend.login (transfer.getDestinationAccountPassword ()))
199
199
{
200
- accountToSend.receiveTransfer (transfer);
200
+ accountToSend.receiveTransfer (transfer, color );
201
201
Transaction expense{ m_nextAvailableTransactionId };
202
202
expense.setDescription (std::vformat (_ (" Transfer to {}" ), std::make_format_args (accountToSend.getMetadata ().getName ())));
203
203
expense.setType (TransactionType::Expense);
You can’t perform that action at this time.
0 commit comments