Invoke refetchRunningBalances after sync/backfill

This commit is contained in:
Keith Solomon
2026-08-07 17:45:15 -05:00
parent 63c6cc6972
commit dd820f6c8a
+2 -2
View File
@@ -80,7 +80,7 @@ function backfillUserLogs($user) {
$url = $next; $url = $next;
} while ($next !== null); } while ($next !== null);
backfillRunningBalances($pdo, $user); refetchRunningBalances($pdo, $user);
} }
/** /**
@@ -114,7 +114,7 @@ function syncUserLogs($user) {
$url = $next; $url = $next;
} while ($next !== null); } while ($next !== null);
backfillRunningBalances($pdo, $user); refetchRunningBalances($pdo, $user);
} }
/** /**