Skip to content

Commit

Permalink
Fixes bug with nested Submodel Elements when MQTT is enabled (eclipse…
Browse files Browse the repository at this point in the history
…-basyx#393)

* Fixes bug with nested Submodel Elements when MQTT is enabled

* Empty-Commit
  • Loading branch information
FriedJannik authored Aug 20, 2024
1 parent a5696ff commit 25be0cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void createSubmodelElement(String submodelId, SubmodelElement smElement)

@Override
public void createSubmodelElement(String submodelId, String idShortPath, SubmodelElement smElement) throws ElementDoesNotExistException {
decorated.createSubmodelElement(submodelId, smElement);
decorated.createSubmodelElement(submodelId, idShortPath, smElement);
SubmodelElement submodelElement = decorated.getSubmodelElement(submodelId, idShortPath);
submodelElementCreated(submodelElement, getName(), submodelId, idShortPath);
}
Expand Down

0 comments on commit 25be0cf

Please sign in to comment.