Skip to content

Commit

Permalink
AbeilleRepair maccapa == ''
Browse files Browse the repository at this point in the history
  • Loading branch information
tcharp38 committed Jun 24, 2024
1 parent 3a6088d commit 7452ce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/php/AbeilleRepair.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ function repairDevice($eqId, $eqLogic) {
msgToCli("step", "Active end points", "ok");

// Zigbee logicalType/macCapa/manufCode defined ?
if (!isset($zigbee['logicalType']) || !isset($zigbee['macCapa']) || !isset($zigbee['manufCode'])) {
if (!isset($zigbee['logicalType']) ||
!isset($zigbee['macCapa']) || ($zigbee['macCapa'] == "") ||
!isset($zigbee['manufCode'])) {
msgToCli("step", "Logical type/MAC capa/manuf code");
logMessage('debug', ' Requesting node descriptor');
msgToCmd(PRIO_HIGH, "Cmd${net}/${addr}/getNodeDescriptor");
Expand Down
1 change: 1 addition & 0 deletions docs/fr_FR/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Corrections: Analyse réseau.
- Corrections: Modèles d'équipement: 'Time-Time' est de retour mais 'Time-TimeStamp' définitivement supprimé.
- Corrections: Status interne Zigate n'est pas 'rxOnWhenIdle'.
- Améliorations: Processus de réparation.

## 240622-BETA-2

Expand Down

0 comments on commit 7452ce8

Please sign in to comment.