fix Node/Network sanitization

This commit is contained in:
2022-11-19 13:24:38 +09:00
parent 2cbf0035f4
commit 5bd00c97d2
2 changed files with 19 additions and 1 deletions

View File

@@ -807,6 +807,9 @@ void Network::Sanitize() {
cmd->Apply();
}
}
if (auto cmd = links_.CreateCommandToRemoveExpired(ids)) {
cmd->Apply();
}
}
File* Network::PreFind(std::string_view name) const noexcept
try {