소스 검색

fix: single voice to text bug

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

+ 0
- 3
channel/wechat/wechat_channel.py 파일 보기

@@ -297,9 +297,6 @@ class WechatChannel(Channel):
match_prefix = check_prefix(content, conf().get('single_chat_prefix'))
if match_prefix: # 判断如果匹配到自定义前缀,则返回过滤掉前缀+空格后的内容
content = content.replace(match_prefix, '', 1).strip()
else:
logger.info("[WX]receive voice, checkprefix didn't match")
return
img_match_prefix = check_prefix(content, conf().get('image_create_prefix'))
if img_match_prefix:


Loading…
취소
저장