1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 15:12:21 +01:00

[http_request] Fix within context with parameters. (Bugfix) (#7790)

This commit is contained in:
Clyde Stubbs
2024-11-21 11:10:28 +11:00
committed by GitHub
parent 5e27a8df1f
commit 6d4f787f67
2 changed files with 9 additions and 1 deletions

View File

@@ -189,7 +189,7 @@ template<typename... Ts> class HttpRequestSendAction : public Action<Ts...> {
if (container == nullptr) {
for (auto *trigger : this->error_triggers_)
trigger->trigger(x...);
trigger->trigger();
return;
}