mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-22 08:27:38 +00:00
aff插件解决部分机型编码错误问题 (#84)
Co-authored-by: TNTcraftHIM <TNTcraftHIM@users.noreply.github.com>
This commit is contained in:
parent
7572c8aa28
commit
5ecfa90475
4
aff.py
4
aff.py
@ -10,7 +10,7 @@ from pagermaid.listener import listener
|
|||||||
async def aff(context):
|
async def aff(context):
|
||||||
if not context.parameter: #发送aff信息
|
if not context.parameter: #发送aff信息
|
||||||
try:
|
try:
|
||||||
with open("plugins/AffExtra/aff.txt", "r") as f:
|
with open("plugins/AffExtra/aff.txt", "r", encoding="UTF-8") as f:
|
||||||
msg = f.read()
|
msg = f.read()
|
||||||
except:
|
except:
|
||||||
msg = ""
|
msg = ""
|
||||||
@ -31,7 +31,7 @@ async def aff(context):
|
|||||||
msg = reply.message
|
msg = reply.message
|
||||||
if not exists("plugins/AffExtra"):
|
if not exists("plugins/AffExtra"):
|
||||||
mkdir("plugins/AffExtra")
|
mkdir("plugins/AffExtra")
|
||||||
with open("plugins/AffExtra/aff.txt", "w") as f:
|
with open("plugins/AffExtra/aff.txt", "w", encoding="UTF-8") as f:
|
||||||
f.write(msg)
|
f.write(msg)
|
||||||
await context.edit("好耶 ! Aff信息保存成功。")
|
await context.edit("好耶 ! Aff信息保存成功。")
|
||||||
sleep(3)
|
sleep(3)
|
||||||
|
Loading…
Reference in New Issue
Block a user