From f1cd0d53b1eae65b29f48c1348ea1afa8521a25b Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 3 Aug 2026 22:47:40 -0500 Subject: [PATCH] Invoke backfillRunningBalances after sync/backfill --- functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions.php b/functions.php index d66d7fe..0da8e59 100644 --- a/functions.php +++ b/functions.php @@ -79,6 +79,8 @@ function backfillUserLogs($user) { $next = fetchAndStoreLogPage($pdo, $user, $url); $url = $next; } while ($next !== null); + + backfillRunningBalances($pdo, $user); } /** @@ -111,6 +113,8 @@ function syncUserLogs($user) { $next = fetchAndStoreLogPage($pdo, $user, $url); $url = $next; } while ($next !== null); + + backfillRunningBalances($pdo, $user); } /**