We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a2256e commit 213bc75Copy full SHA for 213bc75
wled00/wled.h
@@ -8,7 +8,7 @@
8
*/
9
10
// version code in format yymmddb (b = daily build)
11
-#define VERSION 2103200
+#define VERSION 2103201
12
13
//uncomment this if you have a "my_config.h" file you'd like to use
14
//#define WLED_USE_MY_CONFIG
wled00/wled_server.cpp
@@ -247,7 +247,7 @@ bool handleIfNoneMatchCacheHeader(AsyncWebServerRequest* request)
247
248
void setStaticContentCacheHeaders(AsyncWebServerResponse *response)
249
{
250
- response->addHeader(F("Cache-Control"),"max-age=2592000");
+ response->addHeader(F("Cache-Control"),"no-cache");
251
response->addHeader(F("ETag"), String(VERSION));
252
}
253
0 commit comments