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
+1 -1
View File
@@ -26,7 +26,7 @@ pub(super) async fn console_auto_stop(&self) {
/// Execute admin commands after startup
#[implement(super::Service)]
pub(crate) async fn startup_execute(&self) -> Result {
pub async fn startup_execute(&self) -> Result {
// List of commands to execute
let commands = &self.services.server.config.admin_execute;