mirror of
https://github.com/esphome/esphome.git
synced 2024-11-13 02:37:47 +01:00
Fix compilation of automations
This commit is contained in:
parent
27f431a027
commit
58586ea840
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ template<typename... Ts> class Trigger {
|
||||||
bool is_running() {
|
bool is_running() {
|
||||||
if (this->automation_parent_ == nullptr)
|
if (this->automation_parent_ == nullptr)
|
||||||
return false;
|
return false;
|
||||||
return this->automation_parent_.is_running();
|
return this->automation_parent_->is_running();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in a new issue