diff --git a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/BearSSL_CertStore.ino b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/BearSSL_CertStore.ino index 48bfd0e2c..a599a0395 100644 --- a/libraries/ESP8266WiFi/examples/BearSSL_CertStore/BearSSL_CertStore.ino +++ b/libraries/ESP8266WiFi/examples/BearSSL_CertStore/BearSSL_CertStore.ino @@ -148,8 +148,8 @@ void setup() { BearSSL::WiFiClientSecure *bear = new BearSSL::WiFiClientSecure(); // Integrate the cert store with this connection bear->setCertStore(&certStore); - Serial.printf("Attempting to fetch https://www.github.com/...\n"); - fetchURL(bear, "www.github.com", 443, "/"); + Serial.printf("Attempting to fetch https://github.com/...\n"); + fetchURL(bear, "github.com", 443, "/"); delete bear; }