From dd820f6c8a8fe5bcc6ece5aa2b031672ac6d0dc1 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Fri, 7 Aug 2026 17:45:15 -0500 Subject: [PATCH] Invoke refetchRunningBalances after sync/backfill --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 2793603..6c9811f 100644 --- a/functions.php +++ b/functions.php @@ -80,7 +80,7 @@ function backfillUserLogs($user) { $url = $next; } while ($next !== null); - backfillRunningBalances($pdo, $user); + refetchRunningBalances($pdo, $user); } /** @@ -114,7 +114,7 @@ function syncUserLogs($user) { $url = $next; } while ($next !== null); - backfillRunningBalances($pdo, $user); + refetchRunningBalances($pdo, $user); } /**