From fbe9bcac96adb65073b19d7b18534a45ef407e95 Mon Sep 17 00:00:00 2001 From: w_xiaolizu Date: Sun, 18 Jun 2023 03:26:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- toolbox.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/toolbox.py b/toolbox.py index e553021..19d138d 100644 --- a/toolbox.py +++ b/toolbox.py @@ -74,16 +74,18 @@ def ArgsGeneralWrapper(f): plugin_kwargs = { "advanced_arg": plugin_advanced_arg } + transparent_address_private = f'

\n{private_key}\n{ipaddr.client.host}\n

' + transparent_address = f'

\n{ipaddr.client.host}\n

' if private in models: if chatbot == []: - chatbot.append([None, f'隐私模式, 你的对话记录无法被他人检索

\n{private_key}\n{ipaddr.client.host}\n

']) + chatbot.append([None, f'隐私模式, 你的对话记录无法被他人检索 {transparent_address_private}']) else: - chatbot[0] = [None, f'隐私模式, 你的对话记录无法被他人检索

\n{private_key}\n{ipaddr.client.host}\n

'] + chatbot[0] = [None, f'隐私模式, 你的对话记录无法被他人检索 {transparent_address_private}'] else: if chatbot == []: - chatbot.append([None, '正常对话模式, 你接来下的对话将会被记录并且可以被所有人检索,你可以到Settings中选择隐私模式']) + chatbot.append([None, f'正常对话模式, 你接来下的对话将会被记录并且可以被所有人检索,你可以到Settings中选择隐私模式 {transparent_address}']) else: - chatbot[0] = [None, '正常对话模式, 你接来下的对话将会被记录并且可以被所有人检索,你可以到Settings中选择隐私模式'] + chatbot[0] = [None, f'正常对话模式, 你接来下的对话将会被记录并且可以被所有人检索,你可以到Settings中选择隐私模式 {transparent_address}'] chatbot_with_cookie = ChatBotWithCookies(cookies) chatbot_with_cookie.write_list(chatbot) txt_passon = txt