Fixed a crash related to the whisper system and some minor updates

This commit is contained in:
WolverinDEV 2020-12-19 10:52:23 +01:00
parent d42dba7983
commit 12c2a1592d

View File

@ -22,9 +22,11 @@ void AcknowledgeManager::reset() {
lock.unlock();
/* save because entries are not accessable anymore */
for(const auto& entry : pending_entries)
if(entry->acknowledge_listener)
for(const auto& entry : pending_entries) {
if(entry->acknowledge_listener) {
entry->acknowledge_listener->executionFailed("reset");
}
}
}
}