Skip to content

Commit

Permalink
fix: headless in custom comp
Browse files Browse the repository at this point in the history
  • Loading branch information
robbrad authored Jan 8, 2024
1 parent 3bc99cd commit bc54825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/uk_bin_collection/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit bc54825

Please sign in to comment.