return relay tag for ipv6 introducer

This commit is contained in:
orignal 2021-03-30 11:31:11 -04:00
parent 5cca5472e6
commit 25eae3c116
4 changed files with 10 additions and 11 deletions
libi2pd

View file

@ -1172,7 +1172,7 @@ namespace data
return GetRandomRouter (
[](std::shared_ptr<const RouterInfo> router)->bool
{
return router->IsIntroducer () && !router->IsHidden () && !router->IsFloodfill (); // floodfills don't send relay tag
return router->IsIntroducer (true) && !router->IsHidden () && !router->IsFloodfill (); // floodfills don't send relay tag
});
}