File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -1660,12 +1660,6 @@ static void webserver_status() {
1660
1660
page_content += FPSTR (EMPTY_ROW);
1661
1661
add_table_row_from_value (page_content, FPSTR (SENSORS_SDS011), last_value_SDS_version);
1662
1662
}
1663
- if (cfg::scd30_read) {
1664
- if (scd30.getAutoSelfCalibration () == true )
1665
- add_table_row_from_value (page_content, F (" SCD30 Auto Calibration" ), " enabled" );
1666
- else
1667
- add_table_row_from_value (page_content, F (" SCD30 Auto Calibration" ), " disabled" );
1668
- }
1669
1663
1670
1664
page_content += FPSTR (EMPTY_ROW);
1671
1665
page_content += F (" <tr><td colspan='2'><b>" INTL_ERROR " </b></td></tr>" );
@@ -2228,7 +2222,6 @@ static WiFiClient* getNewLoggerWiFiClient(const LoggerEntry logger) {
2228
2222
#if defined(ESP8266)
2229
2223
static_cast <WiFiClientSecure*>(_client)->setSession (loggerConfigs[logger].session );
2230
2224
static_cast <WiFiClientSecure*>(_client)->setBufferSizes (1024 , TCP_MSS > 1024 ? 2048 : 1024 );
2231
- static_cast <WiFiClientSecure*>(_client)->setCiphers (suites_P, sizeof (suites_P)/sizeof (suites_P[0 ]));
2232
2225
static_cast <WiFiClientSecure*>(_client)->setSSLVersion (BR_TLS12, BR_TLS12);
2233
2226
switch (logger) {
2234
2227
case Loggeraircms:
Original file line number Diff line number Diff line change @@ -164,4 +164,4 @@ static const uint16_t suites_P[] PROGMEM = {
164
164
BR_TLS_RSA_WITH_AES_256_CBC_SHA256,
165
165
BR_TLS_RSA_WITH_AES_128_CBC_SHA,
166
166
BR_TLS_RSA_WITH_AES_256_CBC_SHA,
167
- };
167
+ };
You can’t perform that action at this time.
0 commit comments