From bc54825216fbb45dc66661f7418aa95d2d4aa31e Mon Sep 17 00:00:00 2001 From: Robert Bradley Date: Mon, 8 Jan 2024 10:24:30 +0000 Subject: [PATCH] fix: headless in custom comp --- custom_components/uk_bin_collection/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/uk_bin_collection/sensor.py b/custom_components/uk_bin_collection/sensor.py index e7fae9d613..0b287d77a1 100644 --- a/custom_components/uk_bin_collection/sensor.py +++ b/custom_components/uk_bin_collection/sensor.py @@ -56,7 +56,7 @@ async def async_setup_entry( if config.data.get("skip_get_url", False): args.append("--skip_get_url") - if config.data.get("headless", False): + if config.data.get("headless", True): args.append("--not-headless") _LOGGER.info(f"{LOG_PREFIX} UKBinCollectionApp args: {args}")