Fix compilation of automations

This commit is contained in:
Nico Weichbrodt 2019-05-03 23:46:59 +02:00
parent 27f431a027
commit 58586ea840

View file

@ -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: