mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 20:13:44 +02:00
Fix for network not found in netconf.
This commit is contained in:
parent
5336f2600a
commit
999e963533
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ function doNetconfRequest(message)
|
|||
|
||||
// network lookup
|
||||
DB.hgetall(networkKey,function(err,obj) {
|
||||
if (obj.id === nwid)
|
||||
if ((!err)&&(obj)&&(obj.id === nwid))
|
||||
network = obj;
|
||||
return next(null);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue