mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2025-04-12 23:29:37 +08:00
🐛 修复网页截图
循环触发且和权限错误的问题
This commit is contained in:
parent
45a6777855
commit
bac8d09b68
@ -10,7 +10,7 @@ from LittlePaimon.utils.brower import screenshot
|
|||||||
|
|
||||||
|
|
||||||
async def permission_check(event: MessageEvent) -> bool:
|
async def permission_check(event: MessageEvent) -> bool:
|
||||||
return True if config.screenshot_enable else event.user_id not in SUPERUSERS
|
return config.screenshot_enable or event.user_id in SUPERUSERS
|
||||||
|
|
||||||
|
|
||||||
__plugin_meta__ = PluginMetadata(
|
__plugin_meta__ = PluginMetadata(
|
||||||
@ -40,4 +40,4 @@ async def _(event: MessageEvent, msg: Message = CommandArg()):
|
|||||||
img = await screenshot(url)
|
img = await screenshot(url)
|
||||||
await screenshot_cmd.send(MessageSegment.image(img))
|
await screenshot_cmd.send(MessageSegment.image(img))
|
||||||
except Exception:
|
except Exception:
|
||||||
await screenshot_cmd.send('网页截图失败,无法访问该网页,请稍候再试')
|
await screenshot_cmd.send('尝试网页截图失败,无法访问该网页,请稍候再试')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user