Merge pull request #3558 from ascillato/patch-1

Fix MQTT Reconnection Bug
This commit is contained in:
Theo Arends 2018-08-23 09:51:49 +02:00 committed by GitHub
commit 640e34607b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ TasmotaMqtt MqttClient;
bool MqttIsConnected()
{
return mqtt_connected;
return MqttClient.Connected();
}
void MqttDisconnect()