From a2882f32f750afae946c3768900df74b0914efd0 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 9 Apr 2026 23:00:16 -0300 Subject: [PATCH] fix(drive): allow 'default' bot to be monitored so config.csv syncs --- src/main_module/bootstrap.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main_module/bootstrap.rs b/src/main_module/bootstrap.rs index 6b0b1de4..1c5ca1bd 100644 --- a/src/main_module/bootstrap.rs +++ b/src/main_module/bootstrap.rs @@ -988,7 +988,9 @@ async fn start_drive_monitors( info!("Found {} active bots to monitor", bots_to_monitor.len()); for (bot_id, bot_name) in bots_to_monitor { - if bot_name == "default" || bot_name == "gbo-default" { + // Skip "gbo-default" only - it's a reserved system bot name + // Allow "default" bot to be monitored so its config.csv syncs properly + if bot_name == "gbo-default" { continue; }