iobroker.device-watcher 2.9.9 → 2.9.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/arrApart.js CHANGED
@@ -152,8 +152,7 @@ const arrApart = {
152
152
  battery: '.Info.batteryLevel',
153
153
  reach: '.alive',
154
154
  isLowBat: 'none',
155
- id: '.Info.hostname4',
156
- id2: '.Info.deviceModel',
155
+ id: 'none',
157
156
  },
158
157
  fullyMQTT: {
159
158
  Selektor: 'fully-mqtt.*.alive',
package/main.js CHANGED
@@ -1138,7 +1138,6 @@ class DeviceWatcher extends utils.Adapter {
1138
1138
 
1139
1139
  switch (this.selAdapter[i].adapterID) {
1140
1140
  case 'fullybrowser':
1141
- case 'fullybrowserV3':
1142
1141
  deviceName = (await this.getInitValue(currDeviceString + this.selAdapter[i].id)) + ' ' + (await this.getInitValue(currDeviceString + this.selAdapter[i].id2));
1143
1142
  break;
1144
1143
 
@@ -1174,6 +1173,7 @@ class DeviceWatcher extends utils.Adapter {
1174
1173
  //Get ID of foldername
1175
1174
  case 'tado':
1176
1175
  case 'wifilight':
1176
+ case 'fullybrowserV3':
1177
1177
  deviceName = currDeviceString.slice(currDeviceString.lastIndexOf('.') + 1);
1178
1178
  break;
1179
1179
 
@@ -1235,7 +1235,8 @@ class DeviceWatcher extends utils.Adapter {
1235
1235
  linkQualityRaw = deviceQualityState.val;
1236
1236
  break;
1237
1237
  case 'lupusec':
1238
- linkQuality = deviceQualityState.val;
1238
+ case 'fullybrowserV3':
1239
+ linkQuality = deviceQualityState.val; // use real state
1239
1240
  break;
1240
1241
 
1241
1242
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.device-watcher",
3
- "version": "2.9.9",
3
+ "version": "2.9.11",
4
4
  "description": "Watchdog for devices",
5
5
  "author": {
6
6
  "name": "Christian Behrends",