add U+200E before the reply

This commit is contained in:
Rongrong 2022-03-18 01:34:09 +08:00
parent 7a6a32bbab
commit 8ba16de4e6
No known key found for this signature in database
GPG Key ID: A36C9CDA260CB264

View File

@ -130,7 +130,7 @@ def reply(update: telegram.Update, context: telegram.ext.CallbackContext):
text = get_text(from_user, rpl_user, command)
print(text, end='\n\n')
update.effective_message.reply_text(text, parse_mode='HTML')
update.effective_message.reply_text('\u200e' + text, parse_mode='HTML')
if __name__ == '__main__':