outbound_message_handler: skip instead of aborting on removed paths

This commit is contained in:
Jason Rhinelander 2021-11-09 19:47:29 -04:00
parent 633431be66
commit cf5c4e7284
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ namespace llarp
// so check here if the pathid was recently removed.
if (recentlyRemovedPaths.Contains(entry.pathid))
{
return;
continue;
}
auto [queue_itr, is_new] = outboundMessageQueues.emplace(entry.pathid, MessageQueue());