瀏覽代碼

fix: add check for empty command and return error message if so

lanvent 3 年之前
父節點
當前提交
0f8dc91a8b
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      plugins/godcmd/godcmd.py

+ 7 - 0
plugins/godcmd/godcmd.py

@@ -209,6 +209,13 @@ class Godcmd(Plugin):
         content = e_context["context"].content
         logger.debug("[Godcmd] on_handle_context. content: %s" % content)
         if content.startswith("#"):
+            if len(content) == 1:
+                reply = Reply()
+                reply.type = ReplyType.ERROR
+                reply.content = f"空指令,输入#help查看指令列表\n"
+                e_context["reply"] = reply
+                e_context.action = EventAction.BREAK_PASS
+                return 
             # msg = e_context['context']['msg']
             channel = e_context["channel"]
             user = e_context["context"]["receiver"]