server: remove inbox on no-match
This commit is contained in:
parent
4244fa0d82
commit
109d380ea7
@ -1041,6 +1041,12 @@ pub async fn label_unprocessed(
|
|||||||
.entry(t)
|
.entry(t)
|
||||||
.or_insert_with(|| Vec::new())
|
.or_insert_with(|| Vec::new())
|
||||||
.push(id.clone());
|
.push(id.clone());
|
||||||
|
//nm.tag_remove("inbox", &id)?;
|
||||||
|
let t = "inbox".to_string();
|
||||||
|
rm_mutations
|
||||||
|
.entry(t)
|
||||||
|
.or_insert_with(|| Vec::new())
|
||||||
|
.push(id.clone());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!("Adding {} distinct labels", add_mutations.len());
|
println!("Adding {} distinct labels", add_mutations.len());
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user