kongge fix a bug

This commit is contained in:
xtaodada 2021-06-28 13:38:54 +08:00
parent c9059a3e3e
commit 42e75c49ca
No known key found for this signature in database
GPG Key ID: EE4DC37B55E24736
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ except ImportError:
@listener(is_plugin=True, outgoing=True, ignore_edited=True)
async def kongge(context):
if jieba_imported and context.text:
if context.text.startswith('-'):
if context.text.startswith('-') or context.text.startswith('/'):
return
seg_list = jieba.cut(context.text)
seg_txt = ' '.join(seg_list)

View File

@ -522,7 +522,7 @@
},
{
"name": "kongge",
"version": "1.01",
"version": "1.02",
"section": "chat",
"maintainer": "xtaodada",
"size": "4.0 kb",