Fix Upload from Dashboard with MQTT discovery. (#6774)

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
Markus 2024-05-19 22:33:20 +02:00 committed by Jesse Hills
parent 4fc2f2284a
commit 7452879fb1
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -346,7 +346,7 @@ def upload_program(config, args, host):
not is_ip_address(CORE.address) # pylint: disable=too-many-boolean-expressions
and (get_port_type(host) == "MQTT" or config[CONF_MDNS][CONF_DISABLED])
and CONF_MQTT in config
and (not args.device or args.device == "MQTT")
and (not args.device or args.device in ("MQTT", "OTA"))
):
from esphome import mqtt