Compare commits

...

1 Commits

Author SHA1 Message Date
link2xt
e92127511a fix: allow to add transports even when I/O is running 2026-02-11 20:07:12 +00:00

View File

@@ -124,10 +124,6 @@ impl Context {
}
pub(crate) async fn add_transport_inner(&self, param: &mut EnteredLoginParam) -> Result<()> {
ensure!(
!self.scheduler.is_running().await,
"cannot configure, already running"
);
ensure!(
self.sql.is_open().await,
"cannot configure, database not opened."