Finished Nest implementation and default ip selection to not be

127.0.0.1

Fixes #12
Fixes #20
This commit is contained in:
Admin
2016-01-21 16:44:24 -06:00
parent ac59398aa0
commit 37d346f558
11 changed files with 70 additions and 39 deletions

View File

@@ -800,7 +800,7 @@ app.filter('availableNestItemId', function(bridgeService) {
if(input == null)
return out;
for (var i = 0; i < input.length; i++) {
if(!bridgeService.findNestItemByMapId(input[i].Id, "nestHomeAway")){
if(!bridgeService.findNestItemByMapId(input[i].id, "nestHomeAway")){
out.push(input[i]);
}
}