Skip to content

Commit 848e3ea

Browse files
authored
Merge pull request #159 from brentru/fix-fallthrough-error
Fix ESP8266 fallthrough patch causing memory error, add updated ssl cert
2 parents a2b63fc + f2a63df commit 848e3ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit IO Arduino
2-
version=4.2.1
2+
version=4.2.2
33
author=Adafruit
44
maintainer=Adafruit <[email protected]>
55
sentence=Arduino library to access Adafruit IO.

src/AdafruitIO_Data.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ char **parse_csv(const char *line) {
873873
continue;
874874
case '\0':
875875
fEnd = 1;
876-
continue;
876+
break;
877877
case ',':
878878
*tptr = '\0';
879879
*bptr = strdup(tmp);

src/AdafruitIO_Definitions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class AdafruitIOGroupCallback {
119119
// echo | openssl s_client -connect io.adafruit.com:443 | openssl x509
120120
// -fingerprint -noout
121121
#define AIO_SSL_FINGERPRINT \
122-
"59 3C 48 0A B1 8B 39 4E 0D 58 50 47 9A 13 55 60 CC A0 1D AF" ///< Latest
122+
"18 C0 C2 3D BE DD 81 37 73 40 E7 E4 36 61 CB 0A DF 96 AD 25" ///< Latest
123123
///< Adafruit IO
124124
///< SSL
125125
///< Fingerprint

0 commit comments

Comments
 (0)