iobroker-ucl 1.2.74 → 1.2.75
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/package.json +1 -1
- package/shellyFunctions.js +2 -2
- package/shellyFunctions.ts +2 -2
package/package.json
CHANGED
package/shellyFunctions.js
CHANGED
@@ -721,8 +721,8 @@ function sortArray(inputArray) {
|
|
721
721
|
if (compareEtage != 0) {
|
722
722
|
return compareEtage;
|
723
723
|
}
|
724
|
-
var typA = elementA.
|
725
|
-
var typB = elementB.
|
724
|
+
var typA = elementA.getCategory();
|
725
|
+
var typB = elementB.getCategory();
|
726
726
|
var compareTyp = typA.localeCompare(typB);
|
727
727
|
if (compareTyp != 0) {
|
728
728
|
return compareTyp;
|
package/shellyFunctions.ts
CHANGED
@@ -815,8 +815,8 @@ function sortArray(inputArray) {
|
|
815
815
|
return compareEtage;
|
816
816
|
}
|
817
817
|
|
818
|
-
var typA = elementA.
|
819
|
-
var typB = elementB.
|
818
|
+
var typA = elementA.getCategory();
|
819
|
+
var typB = elementB.getCategory();
|
820
820
|
var compareTyp = typA.localeCompare(typB);
|
821
821
|
if (compareTyp != 0) {
|
822
822
|
return compareTyp;
|