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.
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-11-12 17:18:08 -03:00
parent 32e1d740bc
commit f93bb3576c

View file

@ -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<dyn Error + Send + Sync>> {