* Profile Organizer:
- Allow NTCP-only peers in inbound tunnels
This commit is contained in:
@ -541,8 +541,10 @@ public class ProfileOrganizer {
|
||||
l.add(peer);
|
||||
else {
|
||||
RouterAddress ra = info.getTargetAddress("SSU");
|
||||
// Definitely don't want peers with no SSU address at all
|
||||
// peers with no SSU address at all are fine.
|
||||
// as long as they have NTCP
|
||||
if (ra == null) {
|
||||
if (info.getTargetAddress("NTCP") == null)
|
||||
l.add(peer);
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user