mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 07:28:10 +01:00
Merge branch 'dev' into dev
This commit is contained in:
commit
de041b9662
2 changed files with 9 additions and 1 deletions
|
@ -189,7 +189,7 @@ template<typename... Ts> class HttpRequestSendAction : public Action<Ts...> {
|
||||||
|
|
||||||
if (container == nullptr) {
|
if (container == nullptr) {
|
||||||
for (auto *trigger : this->error_triggers_)
|
for (auto *trigger : this->error_triggers_)
|
||||||
trigger->trigger(x...);
|
trigger->trigger();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,14 @@ http_request:
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
verify_ssl: ${verify_ssl}
|
verify_ssl: ${verify_ssl}
|
||||||
|
|
||||||
|
script:
|
||||||
|
- id: does_not_compile
|
||||||
|
parameters:
|
||||||
|
api_url: string
|
||||||
|
then:
|
||||||
|
- http_request.get:
|
||||||
|
url: "http://google.com"
|
||||||
|
|
||||||
ota:
|
ota:
|
||||||
- platform: http_request
|
- platform: http_request
|
||||||
on_begin:
|
on_begin:
|
||||||
|
|
Loading…
Reference in a new issue