We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1dcaa7 commit f13f79aCopy full SHA for f13f79a
1 file changed
plugins/_100_text_forward.py
@@ -274,7 +274,7 @@ def photo_from_telegram(bot, update):
274
if JQ_MODE:
275
text = '[CQ:image,file=' + file_id + '.jpg]'
276
else:
277
- text = '[图片, 请点击查看' + pic_url + ']'
+ text = '[ 图片, 请点击查看' + pic_url + ' ]'
278
if update.message.caption:
279
text += update.message.caption
280
@@ -312,7 +312,7 @@ def sticker_from_telegram(bot, update):
312
313
text = '[CQ:image,file=' + file_id + '.png]'
314
315
- text = '[' + update.message.sticker.emoji + ' sticker, 请点击查看' + pic_url + ']'
+ text = '[ ' + update.message.sticker.emoji + ' sticker, 请点击查看' + pic_url + ' ]'
316
317
text = '[' + update.message.sticker.emoji + ' sticker]'
318
cq_send(update, text, qq_group_id)
0 commit comments