mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-16 19:10:54 +00:00
Merge pull request #316 from joyfullservice/master
Update key verification syntax
This commit is contained in:
commit
ceffe2b7b3
@ -310,14 +310,14 @@ uint32_t ESPUIclient::prepareJSONChunk(uint16_t startindex,
|
||||
break;
|
||||
}
|
||||
|
||||
if(!FragmentRequest.containsKey(F("id")))
|
||||
if(!FragmentRequest["id"].is<JsonVariant>())
|
||||
{
|
||||
Serial.println(F("ERROR:prepareJSONChunk:Fragmentation:Request does not contain a control ID"));
|
||||
break;
|
||||
}
|
||||
uint16_t ControlId = uint16_t(FragmentRequest[F("id")]);
|
||||
|
||||
if(!FragmentRequest.containsKey(F("offset")))
|
||||
if(!FragmentRequest["offset"].is<JsonVariant>())
|
||||
{
|
||||
Serial.println(F("ERROR:prepareJSONChunk:Fragmentation:Request does not contain a starting offset"));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user