mirror of
https://github.com/chatmail/core.git
synced 2026-05-02 04:46:29 +03:00
Fix https://github.com/chatmail/core/issues/7835. The problem was most probably: - `ac1_clone` receives the sync message, sends `TRANSPORTS_MODIFIED` event, and launches a task that will restart IO - After IO was stopped, but before it is started again, `ac1_clone.add_transport_from_qr(qr)` is called - this check fails: ```rust ensure!( !self.scheduler.is_running().await, "cannot configure, already running" ); ```