mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-08 03:34:14 +00:00
Fix for network not found in netconf.
This commit is contained in:
parent
5336f2600a
commit
999e963533
@ -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…
x
Reference in New Issue
Block a user