提交 37eaabf0 authored 作者: blu's avatar blu

cloud cmd api for platform client

上级 c9cf5c8b
...@@ -166,16 +166,16 @@ private: ...@@ -166,16 +166,16 @@ private:
}else if(metaValue == "record") { }else if(metaValue == "record") {
try{ try{
json body = json::parse(body2str(v[2])); json body = json::parse(body2str(v[2]));
if(body.count("start") != 0 && body["start"].is_number() && body.count("end") != 0 && body["end"].is_number()) { if(body.count("data") != 0 && body["data"].is_object() && body["data"].count("start") != 0 && body["data"]["start"].is_number() && body["data"].count("end") != 0 && body["data"]["end"].is_number()) {
json evt; json evt;
evt["type"] = "event"; evt["type"] = "event";
evt["start"] = body["start"]; evt["start"] = body["data"]["start"];
evt["end"] = body["end"]; evt["end"] = body["data"]["end"];
eventQueue.push(evt); eventQueue.push(evt.dump());
bProcessed = true; bProcessed = true;
} }
}catch(exception &e) { }catch(exception &e) {
spdlog::error("evslicer {} exception in handleCloudMsg: {}", e.what()); spdlog::error("evslicer {} exception in handleCloudMsg: {}", selfId, e.what());
} }
}else{ }else{
// //
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论