mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +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() {
|
||||
if (this->automation_parent_ == nullptr)
|
||||
return false;
|
||||
return this->automation_parent_.is_running();
|
||||
return this->automation_parent_->is_running();
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue