Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lih627 committed Feb 8, 2023
1 parent 865432c commit 160df28
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions channel/wechat/wechat_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import requests
import io

thead_pool = ThreadPoolExecutor(max_workers=8)
thread_pool = ThreadPoolExecutor(max_workers=8)


@itchat.msg_register(TEXT)
Expand Down Expand Up @@ -56,9 +56,9 @@ def handle(self, msg):
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
if img_match_prefix:
content = content.split(img_match_prefix, 1)[1].strip()
thead_pool.submit(self._do_send_img, content, from_user_id)
thread_pool.submit(self._do_send_img, content, from_user_id)
else:
thead_pool.submit(self._do_send, content, from_user_id)
thread_pool.submit(self._do_send, content, from_user_id)

elif to_user_id == other_user_id and match_prefix:
# 自己给好友发送消息
Expand All @@ -68,9 +68,9 @@ def handle(self, msg):
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
if img_match_prefix:
content = content.split(img_match_prefix, 1)[1].strip()
thead_pool.submit(self._do_send_img, content, to_user_id)
thread_pool.submit(self._do_send_img, content, to_user_id)
else:
thead_pool.submit(self._do_send, content, to_user_id)
thread_pool.submit(self._do_send, content, to_user_id)


def handle_group(self, msg):
Expand All @@ -95,9 +95,9 @@ def handle_group(self, msg):
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
if img_match_prefix:
content = content.split(img_match_prefix, 1)[1].strip()
thead_pool.submit(self._do_send_img, content, group_id)
thread_pool.submit(self._do_send_img, content, group_id)
else:
thead_pool.submit(self._do_send_group, content, msg)
thread_pool.submit(self._do_send_group, content, msg)

def send(self, msg, receiver):
logger.info('[WX] sendMsg={}, receiver={}'.format(msg, receiver))
Expand Down

0 comments on commit 160df28

Please sign in to comment.