Skip to content

Commit

Permalink
Bugfix: missed constructor argument (#73, #127)
Browse files Browse the repository at this point in the history
  • Loading branch information
climategadgets committed May 18, 2021
1 parent 633e9c6 commit 66c65ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public MqttConnector(
Set<Object> initSet,
Set<ConnectorFactory<JsonRenderer>> factorySet) throws MqttException {

this(mqttBrokerHost, MqttContext.DEFAULT_PORT, mqttBrokerUsername, mqttBrokerPassword, mqttRootTopicPub, mqttRootTopicSub, initSet, null);
this(mqttBrokerHost, MqttContext.DEFAULT_PORT, mqttBrokerUsername, mqttBrokerPassword, mqttRootTopicPub, mqttRootTopicSub, initSet, factorySet);
}

/**
Expand Down

0 comments on commit 66c65ae

Please sign in to comment.