Skip to content

Commit

Permalink
fix #11
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis Jiang authored Nov 18, 2017
1 parent d1dcaa7 commit f13f79a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/_100_text_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def photo_from_telegram(bot, update):
if JQ_MODE:
text = '[CQ:image,file=' + file_id + '.jpg]'
else:
text = '[图片, 请点击查看' + pic_url + ']'
text = '[ 图片, 请点击查看' + pic_url + ' ]'
if update.message.caption:
text += update.message.caption

Expand Down Expand Up @@ -312,7 +312,7 @@ def sticker_from_telegram(bot, update):
if JQ_MODE:
text = '[CQ:image,file=' + file_id + '.png]'
else:
text = '[' + update.message.sticker.emoji + ' sticker, 请点击查看' + pic_url + ']'
text = '[ ' + update.message.sticker.emoji + ' sticker, 请点击查看' + pic_url + ' ]'
else:
text = '[' + update.message.sticker.emoji + ' sticker]'
cq_send(update, text, qq_group_id)
Expand Down

0 comments on commit f13f79a

Please sign in to comment.