Hello When I check if the Arduino success to update the date, if I disconnect the cable, `isTimeSet()` does not return false ```cpp void loop(){ timeClient.update(); if (timeClient.isTimeSet()) { Serial.println("Updated"); } else { Serial.println("Not updated"); } }