Преглед на файлове

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