🐛 修复bot个人介绍重载后不重新读取个人介绍文件

This commit is contained in:
HibiKier 2025-07-21 10:21:33 +08:00
parent 61251ce137
commit d74c4591e4
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import asyncio
from typing_extensions import Self from typing_extensions import Self
from nonebot.adapters import Bot from nonebot.adapters import Bot
@ -132,6 +133,7 @@ class FgRequest(Model):
bot.self_id bot.self_id
) )
if file_path: if file_path:
await asyncio.sleep(2)
await PlatformUtils.send_message( await PlatformUtils.send_message(
bot, bot,
req.user_id, req.user_id,

View File

@ -76,6 +76,7 @@ class BotProfileManager:
_f = PROFILE_IMAGE_PATH / f _f = PROFILE_IMAGE_PATH / f
if _f.is_file(): if _f.is_file():
_f.unlink() _f.unlink()
cls._bot_data.clear()
@classmethod @classmethod
async def _read_profile(cls, bot_id: str): async def _read_profile(cls, bot_id: str):