We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24633e commit a8f976cCopy full SHA for a8f976c
1 file changed
examples/ChunkResponse/ChunkResponse.ino
@@ -98,7 +98,7 @@ void setup() {
98
// curl -N -v -H "if-none-match: 4272" http://192.168.4.1/ --output -
99
//
100
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) {
101
- String etag = "\"" + String(htmlContentLength) + "\""; // RFC9110: ETag must be enclosed in double quotes
+ String etag = "\"" + String(htmlContentLength) + "\""; // RFC9110: ETag must be enclosed in double quotes
102
103
if (request->header(asyncsrv::T_INM) == etag) {
104
request->send(304);
0 commit comments