💠 修改措辞、优化消息结构

This commit is contained in:
Xtao_dada 2020-06-06 22:56:53 +08:00 committed by GitHub
parent 18fdeb63aa
commit fa44e8a23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ async def userid(context):
message = await context.get_reply_message() message = await context.get_reply_message()
except: except:
pass pass
text = "**以下是当前对话的信息:** \n\n**ChatID**`" + str(context.chat_id) + "`\n" text = "**以下是当前对话的信息:** \n\n**ChatID**`" + str(context.chat_id) + "`\n\n"
if message: if message:
user_id = message.sender.id user_id = message.sender.id
if message.sender.username: if message.sender.username:
@ -42,7 +42,7 @@ async def userid(context):
except: except:
text1 = "**以下是被回复消息的信息:** \n\n**道纹:** " + target + " \n" + "**用户ID** `" + str(user_id) + "` \n\n**此消息没有包含被转发用户的信息** \n\n" text1 = "**以下是被回复消息的信息:** \n\n**道纹:** " + target + " \n" + "**用户ID** `" + str(user_id) + "` \n\n**此消息没有包含被转发用户的信息** \n\n"
else: else:
text1 = "出错了呜呜呜 ~ 无法获取所回复消息的信息。" text1 = "无法获取所回复消息的信息或者没有回复消息。"
text = text + text1 text = text + text1
await context.edit(text) await context.edit(text)