fix: Don't panic when running startup admin commands

This commit is contained in:
Ginger
2026-02-15 17:28:55 -05:00
parent 7b21c3fd9f
commit 4e1dac32a5
4 changed files with 14 additions and 11 deletions
-7
View File
@@ -149,13 +149,6 @@ impl Services {
debug_info!("Services startup complete.");
// Run startup admin commands
self.admin.startup_execute().await?;
// Prin first-run banner if necessary. This needs to be done after the startup
// admin commands are run in case one of them created the first user.
self.firstrun.print_first_run_banner();
Ok(Arc::clone(self))
}