mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	[fan] Do not save state for fan if configured as NO_RESTORE (#9472)
This commit is contained in:
		| @@ -177,6 +177,10 @@ optional<FanRestoreState> Fan::restore_state_() { | ||||
|   return {}; | ||||
| } | ||||
| void Fan::save_state_() { | ||||
|   if (this->restore_mode_ == FanRestoreMode::NO_RESTORE) { | ||||
|     return; | ||||
|   } | ||||
|  | ||||
|   FanRestoreState state{}; | ||||
|   state.state = this->state; | ||||
|   state.oscillating = this->oscillating; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user