mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	fix: use instance methods for string trimming in DynamicLamp
This commit is contained in:
		| @@ -127,8 +127,8 @@ std::string_view DynamicLamp::rtrim_(std::string_view str) | ||||
|  | ||||
| std::string_view DynamicLamp::trim_(std::string_view str) | ||||
| { | ||||
|     str = ltrim(str); | ||||
|     str = rtrim(str); | ||||
|     str = this->ltrim_(str); | ||||
|     str = this->rtrim_(str); | ||||
|     return str; | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user