From f1817a520b0d2e5bcb2e6ab0a731e560cf2a85f4 Mon Sep 17 00:00:00 2001 From: null Date: Sun, 7 Jun 2026 00:24:43 -0500 Subject: [PATCH] fix: status service edge case handling --- services/statusService.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/statusService.js b/services/statusService.js index 8d6855a..0f77315 100644 --- a/services/statusService.js +++ b/services/statusService.js @@ -264,6 +264,11 @@ function buildTrackerRow(bill, payments, year, month, todayStr, options = {}) { current_balance: bill.current_balance ?? null, minimum_payment: bill.minimum_payment ?? null, interest_rate: bill.interest_rate ?? null, + is_subscription: !!bill.is_subscription, + has_2fa: !!bill.has_2fa, + has_merchant_rule: !!bill.has_merchant_rule, + has_linked_transactions: !!bill.has_linked_transactions, + website: bill.website || null, payments: safePayments, }; }