Bump ArduinoJson to 6.18.0

This commit is contained in:
fvanroie 2021-05-05 23:37:04 +02:00
parent 036861db3a
commit 1275b32a5e
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ build_flags =
; Warning : don't put comments after github links => causes infinite download loop
lib_deps =
bxparks/AceButton@^1.8.3 ; GPIO button library
bblanchon/ArduinoJson@^6.17.3 ; Json(l) parser
bblanchon/ArduinoJson@^6.18.0 ; Json(l) parser
bblanchon/StreamUtils@1.6.0 ; for EEPromStream
knolleary/PubSubClient@^2.8.0 ; MQTT client
git+https://github.com/fvanroie/ConsoleInput.git

View File

@ -122,7 +122,7 @@ DeserializationError configParseFile(String& configFile, JsonDocument& settings)
}
return DeserializationError::InvalidInput;
#else
return DeserializationError::NotSupported;
return DeserializationError::InvalidInput;
#endif
}