fixed variable typo in wifi.h

This commit is contained in:
Merlin Schumacher 2019-05-16 16:12:09 +02:00 committed by GitHub
parent 6cd26cb67d
commit a78878865d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,6 @@ void wifiSetup(bool onDemand = false) {
strcpy(mqtt_port, custom_mqtt_port.getValue()); strcpy(mqtt_port, custom_mqtt_port.getValue());
strcpy(mqtt_user, custom_mqtt_user.getValue()); strcpy(mqtt_user, custom_mqtt_user.getValue());
strcpy(mqtt_password, custom_mqtt_password.getValue()); strcpy(mqtt_password, custom_mqtt_password.getValue());
strcpy(mqtt_password, custom_mqtt_topic.getValue()); strcpy(mqtt_topic, custom_mqtt_topic.getValue());
strcpy(mqtt_fingerprint, custom_mqtt_fingerprint.getValue()); strcpy(mqtt_fingerprint, custom_mqtt_fingerprint.getValue());
} }