mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	web_server_idf: fix call with hardcoded http code (#5942)
This commit is contained in:
		| @@ -117,7 +117,7 @@ class AsyncWebServerRequest { | |||||||
|   // NOLINTNEXTLINE(readability-identifier-naming) |   // NOLINTNEXTLINE(readability-identifier-naming) | ||||||
|   AsyncWebServerResponse *beginResponse(int code, const char *content_type) { |   AsyncWebServerResponse *beginResponse(int code, const char *content_type) { | ||||||
|     auto *res = new AsyncWebServerResponseEmpty(this);  // NOLINT(cppcoreguidelines-owning-memory) |     auto *res = new AsyncWebServerResponseEmpty(this);  // NOLINT(cppcoreguidelines-owning-memory) | ||||||
|     this->init_response_(res, 200, content_type); |     this->init_response_(res, code, content_type); | ||||||
|     return res; |     return res; | ||||||
|   } |   } | ||||||
|   // NOLINTNEXTLINE(readability-identifier-naming) |   // NOLINTNEXTLINE(readability-identifier-naming) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user