瀏覽代碼

Fix for network not found in netconf.

Adam Ierymenko 11 年之前
父節點
當前提交
999e963533
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      netconf-service/index.js

+ 1 - 1
netconf-service/index.js

@@ -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);
 		});