diff --git a/src/job.rs b/src/job.rs index 9a16421f7..7333ce498 100644 --- a/src/job.rs +++ b/src/job.rs @@ -303,12 +303,8 @@ pub async fn add(context: &Context, job: Job) -> Result<()> { job.save(context).await.context("failed to save job")?; if delay_seconds == 0 { - match action { - Action::ResyncFolders | Action::DownloadMsg => { - info!(context, "interrupt: imap"); - context.interrupt_inbox(InterruptInfo::new(false)).await; - } - } + info!(context, "interrupt: imap"); + context.interrupt_inbox(InterruptInfo::new(false)).await; } Ok(()) }