From 74befcf4615ac553cc29210046f24d4432d8a1ed Mon Sep 17 00:00:00 2001 From: Nick Logozzo Date: Sat, 27 Jan 2024 12:14:48 -0500 Subject: [PATCH] Update Account.cs --- NickvisionMoney.Shared/Models/Account.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NickvisionMoney.Shared/Models/Account.cs b/NickvisionMoney.Shared/Models/Account.cs index 469f5398..75fa620c 100644 --- a/NickvisionMoney.Shared/Models/Account.cs +++ b/NickvisionMoney.Shared/Models/Account.cs @@ -1544,7 +1544,7 @@ private async Task 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) {