소스 검색

fix: ignore remove file failed

master
lanvent 1 년 전
부모
커밋
4fd7e4be67
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      channel/wechat/wechat_channel.py

+ 6
- 2
channel/wechat/wechat_channel.py 파일 보기

@@ -277,8 +277,12 @@ class WechatChannel(Channel):
# 语音识别
reply = super().build_voice_to_text(wav_path)
# 删除临时文件
os.remove(wav_path)
os.remove(mp3_path)
try:
os.remove(wav_path)
os.remove(mp3_path)
except Exception as e:
logger.warning("[WX]delete temp file error: " + str(e))

if reply.type != ReplyType.ERROR and reply.type != ReplyType.INFO:
content = reply.content # 语音转文字后,将文字内容作为新的context
context.type = ContextType.TEXT


Loading…
취소
저장