iobroker-ucl 1.4.19 → 1.4.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -896,6 +896,10 @@ function loadHomematicDevicesAll(adapter) {
896
896
  // @ts-ignore
897
897
  homematicAllArray.push(homematic);
898
898
  });
899
+ adapter.loadHomematicHeizkoerpergruppe(adapter).forEach(function (homematic) {
900
+ // @ts-ignore
901
+ homematicAllArray.push(homematic);
902
+ });
899
903
  adapter.loadHomematicDimmer(adapter).forEach(function (homematic) {
900
904
  // @ts-ignore
901
905
  homematicAllArray.push(homematic);
@@ -916,6 +920,7 @@ function clearHomematicCaches(adapter) {
916
920
  //homematicAllArray = null;
917
921
  cacheDimmerArray = null;
918
922
  cacheHeizkoerperArray = null;
923
+ cacheHeizkoerpergruppeArray = null;
919
924
  cacheSteckdosenArray = null;
920
925
  cacheWindowsArray = null;
921
926
  cacheFunkschaltaktorenArray = null;
@@ -974,6 +974,10 @@ export function loadHomematicDevicesAll(adapter: any) {
974
974
  // @ts-ignore
975
975
  homematicAllArray.push(homematic);
976
976
  });
977
+ adapter.loadHomematicHeizkoerpergruppe(adapter).forEach(homematic => {
978
+ // @ts-ignore
979
+ homematicAllArray.push(homematic);
980
+ });
977
981
  adapter.loadHomematicDimmer(adapter).forEach(homematic => {
978
982
  // @ts-ignore
979
983
  homematicAllArray.push(homematic);
@@ -995,6 +999,7 @@ function clearHomematicCaches(adapter: any) {
995
999
  //homematicAllArray = null;
996
1000
  cacheDimmerArray = null;
997
1001
  cacheHeizkoerperArray = null;
1002
+ cacheHeizkoerpergruppeArray = null;
998
1003
  cacheSteckdosenArray = null;
999
1004
  cacheWindowsArray = null;
1000
1005
  cacheFunkschaltaktorenArray = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker-ucl",
3
- "version": "1.4.19",
3
+ "version": "1.4.20",
4
4
  "main": "main.js",
5
5
  "scripts": {
6
6
  "build": "tsc --build",