Josh Willox
Josh Willox
This is definitely an issue, I was sure that it was working in development, but it is definitely broken at the moment.
The `flags` and `extra_flags` sections only effect jobs and have no effect on the rclone webui. It's mainly for configuring remotes rather than interacting with them at the moment. You...
Hmm yeah so putting it in the config doesn't work yet. Do you want to check if that flag would actually work when running the [rclone gui](https://rclone.org/gui/)? If it does...
You can just run it on your computer, just install rclone and run `rclone rcd --rc-web-gui --no-check-certificate` from your terminal, it should be the same as if it were inside...
All good, same here 😄 I'll convert this to a feature request to add the ability to specify flags for the rclone webui.
I'll have to do some testing here, but I changed the behaviour because the old behaviour was effectively broken. Previously, when using a temperature template, for example, if the template...
Looks like the issue is you're returning the literal `HVACAction.HEATING` instead of the actual value `heating`, for a list of valid values look here https://github.com/home-assistant/core/blob/dev/homeassistant/components/climate/const.py#L90. Otherwise, perhaps @laszlojakab can help.
Indeed here's the patch I'm using, I'll create a PR to fix this 👍 ```diff diff --git a/src/get-lovelace.ts b/src/get-lovelace.ts index ebde3e6bf5d86f793d9697d8c88b57bf7b004e7b..6a8afc3d32539a4f8a257926a7cf9972841c8343 100644 --- a/src/get-lovelace.ts +++ b/src/get-lovelace.ts @@ -3,7 +3,7 @@...
Home Assistant services should already let you template the keep days field, or do you want AB to evaluate a template when it's checking if a backup should be deleted?
I thought you could always do it, like in this example ```yaml script: msg_who_is_home: sequence: - service: notify.notify data: message: > {% if is_state('device_tracker.paulus', 'home') %} Ha, Paulus is home!...