소스 검색

fix: delete same file twice

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

+ 4
- 2
channel/chat_channel.py 파일 보기

@@ -144,9 +144,11 @@ class ChatChannel(Channel):
# 删除临时文件
try:
os.remove(file_path)
os.remove(wav_path)
if wav_path != file_path:
os.remove(wav_path)
except Exception as e:
logger.warning("[WX]delete temp file error: " + str(e))
pass
# logger.warning("[WX]delete temp file error: " + str(e))

if reply.type == ReplyType.TEXT:
new_context = self._compose_context(


+ 2
- 1
channel/wechat/wechaty_channel.py 파일 보기

@@ -84,7 +84,8 @@ class WechatyChannel(ChatChannel):
asyncio.run_coroutine_threadsafe(receiver.say(msg),loop).result()
try:
os.remove(file_path)
os.remove(sil_file)
if sil_file != file_path:
os.remove(sil_file)
except Exception as e:
pass
logger.info('[WX] sendVoice={}, receiver={}'.format(reply.content, receiver))


Loading…
취소
저장