Add relay server address for the status

This commit is contained in:
Zoltán Papp
2024-07-10 22:17:54 +02:00
parent 4e75e15ea1
commit 83b83ccfd2
7 changed files with 50 additions and 11 deletions

View File

@@ -174,8 +174,8 @@ func seedFromStatus(a *anonymize.Anonymizer, status *peer.FullStatus) {
}
for _, relay := range status.Relays {
if relay.URI != nil {
a.AnonymizeURI(relay.URI.String())
if relay.URI != "" {
a.AnonymizeURI(relay.URI)
}
}
}