Skip to content

Commit

Permalink
Update to latest OpenRemote version
Browse files Browse the repository at this point in the history
  • Loading branch information
pankalog committed Oct 7, 2024
1 parent 42e0c12 commit 07152d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
projectName = custom-project
projectVersion = 1.0-SNAPSHOT
typescriptGeneratorVersion = 3.2.1263
typescriptGeneratorVersion = 3.2.1263
org.gradle.parallel=true
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private void handleAttributeMessage(AttributeEvent event) {
* @param device A {@link TeltonikaDevice} that is currently subscribed, to which to send the message to.
*/
private void sendCommandToTeltonikaDevice(String command, TeltonikaDevice device) {
mqttBrokerService.publishMessage(device.commandTopic, Map.of("CMD", command), MqttQoS.EXACTLY_ONCE);
publishMessage(device.commandTopic, Map.of("CMD", command), MqttQoS.EXACTLY_ONCE);
}

@Override
Expand Down

0 comments on commit 07152d1

Please sign in to comment.