We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bafb8 commit e686925Copy full SHA for e686925
arclet/entari/command/provider.py
@@ -23,7 +23,7 @@ def _remove_config_prefix(message: MessageChain):
23
if not (command_prefix := EntariConfig.instance.basic.prefix):
24
return message
25
if message and isinstance(message[0], Text):
26
- text = message[0].text # type: ignore
+ text = message[0].text.lstrip() # type: ignore
27
for prefix in command_prefix:
28
if not prefix:
29
0 commit comments