File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ ArduinoIoTCloudTCP::State ArduinoIoTCloudTCP::handle_SubscribeMqttTopics()
398
398
}
399
399
400
400
DEBUG_VERBOSE (" ArduinoIoTCloudTCP::%s subscribing to %s ..." , __FUNCTION__, _dataTopicIn.c_str ());
401
- if (!_mqttClient.subscribe (_dataTopicIn, 0 ))
401
+ if (!_mqttClient.subscribe (_dataTopicIn))
402
402
{
403
403
DEBUG_ERROR (" ArduinoIoTCloudTCP::%s could not subscribe to %s" , __FUNCTION__, _dataTopicIn.c_str ());
404
404
#if !defined(__AVR__)
@@ -411,7 +411,7 @@ ArduinoIoTCloudTCP::State ArduinoIoTCloudTCP::handle_SubscribeMqttTopics()
411
411
if (_shadowTopicIn != " " )
412
412
{
413
413
DEBUG_VERBOSE (" ArduinoIoTCloudTCP::%s subscribing to %s ..." , __FUNCTION__, _shadowTopicIn.c_str ());
414
- if (!_mqttClient.subscribe (_shadowTopicIn, 0 ))
414
+ if (!_mqttClient.subscribe (_shadowTopicIn))
415
415
{
416
416
DEBUG_ERROR (" ArduinoIoTCloudTCP::%s could not subscribe to %s" , __FUNCTION__, _shadowTopicIn.c_str ());
417
417
#if !defined(__AVR__)
You can’t perform that action at this time.
0 commit comments