Fix MQTT Not Working in dev branch (#527)

* Fix MQTT not working

* Fix minor typo causing compile error
This commit is contained in:
mtl010957
2019-05-07 15:19:30 -04:00
committed by Otto Winter
parent 27f431a027
commit c569d022ec
2 changed files with 4 additions and 3 deletions
+1 -1
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: