Skip to content

Commit

Permalink
Merge pull request #159 from brentru/fix-fallthrough-error
Browse files Browse the repository at this point in the history
Fix ESP8266 fallthrough patch causing memory error, add updated ssl cert
  • Loading branch information
brentru authored Aug 15, 2022
2 parents a2b63fc + f2a63df commit 848e3ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit IO Arduino
version=4.2.1
version=4.2.2
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=Arduino library to access Adafruit IO.
Expand Down
2 changes: 1 addition & 1 deletion src/AdafruitIO_Data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ char **parse_csv(const char *line) {
continue;
case '\0':
fEnd = 1;
continue;
break;
case ',':
*tptr = '\0';
*bptr = strdup(tmp);
Expand Down
2 changes: 1 addition & 1 deletion src/AdafruitIO_Definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class AdafruitIOGroupCallback {
// echo | openssl s_client -connect io.adafruit.com:443 | openssl x509
// -fingerprint -noout
#define AIO_SSL_FINGERPRINT \
"59 3C 48 0A B1 8B 39 4E 0D 58 50 47 9A 13 55 60 CC A0 1D AF" ///< Latest
"18 C0 C2 3D BE DD 81 37 73 40 E7 E4 36 61 CB 0A DF 96 AD 25" ///< Latest
///< Adafruit IO
///< SSL
///< Fingerprint
Expand Down

0 comments on commit 848e3ea

Please sign in to comment.