mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
Fix panic in GetPeers
that may happen mid-link setup
This commit is contained in:
parent
65e350153e
commit
9a9452dcc8
1 changed files with 3 additions and 0 deletions
|
@ -62,6 +62,9 @@ func (c *Core) GetPeers() []PeerInfo {
|
|||
names := make(map[net.Conn]string)
|
||||
phony.Block(&c.links, func() {
|
||||
for _, info := range c.links._links {
|
||||
if info == nil {
|
||||
continue
|
||||
}
|
||||
names[info.conn] = info.lname
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue