csd-filter-add/remove: add missing applyPending()
A transaction is now necessary to update border state.
This commit is contained in:
parent
8cb5ca9041
commit
07154720fa
@ -90,6 +90,7 @@ pub fn csdFilterAdd(
|
||||
gop.key_ptr.* = try util.gpa.dupe(u8, key);
|
||||
|
||||
csdFilterUpdateViews(kind, key, .add);
|
||||
server.root.applyPending();
|
||||
}
|
||||
|
||||
pub fn csdFilterRemove(
|
||||
@ -110,6 +111,7 @@ pub fn csdFilterRemove(
|
||||
if (map.fetchRemove(key)) |kv| {
|
||||
util.gpa.free(kv.key);
|
||||
csdFilterUpdateViews(kind, key, .remove);
|
||||
server.root.applyPending();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user