From 5bb63231f4e39bd9367973cb73ea865de4b4eb9b Mon Sep 17 00:00:00 2001 From: felinae98 <731499577@qq.com> Date: Thu, 18 Feb 2021 23:16:28 +0800 Subject: [PATCH] fix compress --- src/plugins/hk_reporter/post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/hk_reporter/post.py b/src/plugins/hk_reporter/post.py index 5516c12..592dc73 100644 --- a/src/plugins/hk_reporter/post.py +++ b/src/plugins/hk_reporter/post.py @@ -30,7 +30,7 @@ class Post: msgs.append(text) for pic in self.pics: msgs.append("[CQ:image,file={url}]".format(url=pic)) - if not self.compress: + if self.compress: msgs = [''.join(msgs)] return msgs