iobroker.zigbee 1.10.11 → 1.10.12

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/README.md CHANGED
@@ -136,6 +136,9 @@ You can thank the authors by these links:
136
136
 
137
137
  -----------------------------------------------------------------------------------------------------
138
138
  ## Changelog
139
+ ### 1.10.12 (2024-11-03)
140
+ * (asgothian) corr Channel Scan
141
+
139
142
  ### 1.10.11 (2024-11-02)
140
143
  * BREAKING CHANGE
141
144
  *
@@ -55,7 +55,7 @@ $(document).ready(function () {
55
55
  function loadSystemConfig(callback) {
56
56
  socket.emit('getObject', 'system.config', function (err, res) {
57
57
  if (!err && res && res.common) {
58
- // systemLang = res.common.language || systemLang;
58
+ systemLang = res.common.language;
59
59
  systemConfig = res;
60
60
  }
61
61
  socket.emit('getObject', 'system.certificates', function (err, res) {
package/admin/admin.js CHANGED
@@ -2552,7 +2552,7 @@ function showChannels() {
2552
2552
  }
2553
2553
  }
2554
2554
  });
2555
- showWaitingDialog('Scanning channels - not working yet', 10);
2555
+ showWaitingDialog('Scanning channels', 10);
2556
2556
  }
2557
2557
 
2558
2558
  function onlyOne(devs) {