mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 11:22:24 +01:00
Fix use of optional<T> (#5091)
This commit is contained in:
@@ -11,7 +11,7 @@ void TemplateBinarySensor::setup() {
|
||||
return;
|
||||
|
||||
if (this->f_ != nullptr) {
|
||||
this->publish_initial_state(*this->f_());
|
||||
this->publish_initial_state(this->f_().value_or(false));
|
||||
} else {
|
||||
this->publish_initial_state(false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user