We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51b620 commit 673e1bcCopy full SHA for 673e1bc
1 file changed
room_control_unit/src/app/logic/presenter/serializer/JsonSerializer.cpp
@@ -56,7 +56,7 @@ String JsonSerializer::serialize(PresenceEvent* const presenceEvent){
56
DynamicJsonDocument doc(BASE_SIZE);
57
doc["type"] = static_cast<int>(presenceEvent->getType());
58
doc["room_id"] = presenceEvent->getRoom().getId();
59
- doc["persone_inside"] = presenceEvent->isSomeonePresent();
+ doc["person_inside"] = presenceEvent->isSomeonePresent();
60
serializeJson(doc, output);
61
return output;
62
}
0 commit comments