Update index.php to call backfillUserLogs/syncUserLogs

This commit is contained in:
Keith Solomon
2026-08-03 13:45:37 -05:00
parent d6aef3da42
commit 265e1841f0
+2 -2
View File
@@ -15,12 +15,12 @@ require_once __DIR__ . '/functions.php';
if (dbNew()) { if (dbNew()) {
foreach (USER_KEYS as $key => $value) { foreach (USER_KEYS as $key => $value) {
firstRun($key); backfillUserLogs($key);
} }
header('Location: /'); header('Location: /');
} else { } else {
foreach (USER_KEYS as $key => $value) { foreach (USER_KEYS as $key => $value) {
getLog($key); syncUserLogs($key);
} }
} }
?> ?>