This commit is contained in:
sxyazi 2026-03-21 17:24:19 +08:00
parent 6d06acd3a6
commit f82b4d8773
No known key found for this signature in database

View file

@ -27,7 +27,7 @@ impl Batcher {
{
let Some(path) = target.as_url().as_local() else { return };
if let Some(value) = self.pending.lock().get_mut(path) {
*value = Some(decision);
*value = value.or(Some(decision));
}
}
}