Remove test call for FHEM devices

This commit is contained in:
bsamuels
2018-01-05 16:19:18 -06:00
parent b88b3fa245
commit b2a30f5771
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
<groupId>com.bwssystems.HABridge</groupId>
<artifactId>ha-bridge</artifactId>
<version>5.2.0RC2</version>
<version>5.2.0RC3</version>
<packaging>jar</packaging>
<name>HA Bridge</name>

View File

@@ -137,7 +137,7 @@ public class FHEMHome implements Home {
List<FHEMDevice> deviceList = new ArrayList<FHEMDevice>();
while(keys.hasNext()) {
String key = keys.next();
theResponse = fhemMap.get(key).testGetDevices(httpClient);
theResponse = fhemMap.get(key).getDevices(httpClient);
if(theResponse != null)
addFHEMDevices(deviceList, theResponse, key);
else {