|
@@ -330,7 +330,7 @@ class XfAsr:
|
|
|
final_result['name'] = 'TranscriptionResultChanged'
|
|
|
if st['type'] == "0":
|
|
|
final_result['name'] = 'SentenceEnd'
|
|
|
- final_result['result'] = ''.join(cw["w"] for item in rt for ws in item["ws"] for cw in ws["cw"])
|
|
|
+ final_result['result'] = ''.join(cw["w"] for item in rt for ws in item["ws"] for cw in ws["cw"]).strip()
|
|
|
elif result_dict["action"] == "error":
|
|
|
self.logger.error("xunfei.Asr.recv: call_id: %s, action is error: %s", self.tid, message)
|
|
|
final_result['name'] = 'TranscriptionResultError'
|