Skip to content

Commit 73ab371

Browse files
committed
removed the Z at the end the FullFormattedTime()
1 parent 8218bf5 commit 73ab371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: NTPClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ String NTPClient::getFullFormattedTime(unsigned long secs)
258258
String secondStr = seconds < 10 ? "0" + String(seconds) : String(seconds);
259259

260260
return yearStr + "-" + monthStr + "-" + dayStr + "T" +
261-
hoursStr + ":" + minuteStr + ":" + secondStr + "Z";
261+
hoursStr + ":" + minuteStr + ":" + secondStr;
262262
}
263263

264264
int NTPClient::getYear()

0 commit comments

Comments
 (0)