瀏覽代碼

Send_pictures small fix (#546)

Φφ 2 年之前
父節點
當前提交
c97c270040
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      extensions/send_pictures/script.py

+ 1 - 1
extensions/send_pictures/script.py

@@ -25,7 +25,7 @@ def caption_image(raw_image):
 
 
 def generate_chat_picture(picture, name1, name2):
-    text = f'*{name1} sends {name2} a picture that contains the following: "{caption_image(picture)}"*'
+    text = f'*{name1} sends {name2} a picture that contains the following: “{caption_image(picture)}”*'
     # lower the resolution of sent images for the chat, otherwise the log size gets out of control quickly with all the base64 values in visible history
     picture.thumbnail((300, 300))
     buffer = BytesIO()