fix previous commit

pull/320/head
Jeff Becker 5 years ago
parent 393e70dfa6
commit b1dd10c007
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -984,7 +984,12 @@ namespace llarp
bool
Endpoint::CheckPathIsDead(path::Path*, llarp_time_t)
{
Logic()->queue_job({this, &HandlePathDead});
RouterLogic()->call_later(
{100, this, [](void* u, uint64_t, uint64_t left) {
if(left)
return;
HandlePathDead(u);
}});
return true;
}

Loading…
Cancel
Save