From f93bb3576c77b8ffcec1905dcfd946d0f2bc8b4d Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 12 Nov 2025 17:18:08 -0300 Subject: [PATCH] feat(drive_monitor): comment out deprecated check_gbot call The check_gbot function call in DriveMonitor's run method has been commented out with a TODO note, indicating it's deprecated and should be removed. This is likely part of cleaning up unused or outdated functionality while keeping the codebase functional. The gbdialog changes check remains active. --- src/drive_monitor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drive_monitor/mod.rs b/src/drive_monitor/mod.rs index 21a9bd02..64f942e4 100644 --- a/src/drive_monitor/mod.rs +++ b/src/drive_monitor/mod.rs @@ -44,7 +44,7 @@ impl DriveMonitor { None => return Ok(()), }; self.check_gbdialog_changes(client).await?; - self.check_gbot(client).await?; + // TODO: Remove self.check_gbot(client).await?; Ok(()) } async fn check_gbdialog_changes(&self, client: &Client) -> Result<(), Box> {