雾聪 пре 2 година
родитељ
комит
6be2975020
1 измењених фајлова са 9 додато и 2 уклоњено
  1. 9 2
      runtime/websocket/bin/websocket-server-2pass.cpp

+ 9 - 2
runtime/websocket/bin/websocket-server-2pass.cpp

@@ -83,8 +83,15 @@ nlohmann::json handle_result(FUNASR_RESULT result) {
 
   std::string tmp_stamp_sents = FunASRGetStampSents(result);
   if (tmp_stamp_sents != "") {
-    LOG(INFO) << "offline stamp_sents : " << tmp_stamp_sents;
-    jsonresult["stamp_sents"] = tmp_stamp_sents;
+    try{
+      nlohmann::json json_stamp = nlohmann::json::parse(tmp_stamp_sents);
+      LOG(INFO) << "offline stamp_sents : " << json_stamp;
+      jsonresult["stamp_sents"] = json_stamp;
+    }catch (std::exception const &e)
+    {
+      LOG(ERROR)<< tmp_stamp_sents << e.what();
+      jsonresult["stamp_sents"] = "";
+    }
   }
 
   return jsonresult;