diff --git a/pt_site/UtilityTool.py b/pt_site/UtilityTool.py index a6b0441..c21aafb 100644 --- a/pt_site/UtilityTool.py +++ b/pt_site/UtilityTool.py @@ -966,7 +966,7 @@ class PtSpider: @staticmethod def parse_message_num(messages: str): """ - + 解析网站消息条数 :param messages: :return: """ @@ -1126,8 +1126,10 @@ class PtSpider: mail_count = int(mail_count) if mail_count else 0 notice_count = int(notice_count) if notice_count else 0 if mail_count + notice_count > 0: + my_site.mail = mail_count + notice_count template = '### {} 有{}条新短消息,请注意及时查收!' - self.send_text(template.format(site.name, mail_count + notice_count)) + # 测试发送网站消息原内容 + self.send_text(template.format(site.name, mail_count + notice_count) + mail_str + notice_str) res_sp_hour = self.get_hour_sp(my_site=my_site) if res_sp_hour.code != StatusCodeEnum.OK.code: