Skip to content

Commit

Permalink
Update Account.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Jan 27, 2024
1 parent 79405bf commit 74befcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NickvisionMoney.Shared/Models/Account.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ private async Task<ImportResult> ImportFromQIFAsync(string path, string defaultT
}
else
{
t.Description = string.IsNullOrWhiteSpace(transaction.Payee) ? (string.IsNullOrWhiteSpace(transaction.Memo) ? _("N/A") : string.IsNullOrWhiteSpace(transaction.Memo)) : transaction.Payee;
t.Description = string.IsNullOrWhiteSpace(transaction.Payee) ? (string.IsNullOrWhiteSpace(transaction.Memo) ? _("N/A") : transaction.Memo) : transaction.Payee;
}
if ((await AddTransactionAsync(t)).Successful)
{
Expand Down

0 comments on commit 74befcf

Please sign in to comment.