fix: allow empty followerIdentifiers to avoid blocking openclaw CLI

An empty followerIdentifiers array caused a fatal validation error during
plugin registration, which prevented all openclaw CLI commands from running.
This commit is contained in:
operator
2026-04-16 14:58:36 +00:00
parent b571180b89
commit 0fb9be9dee
2 changed files with 3 additions and 3 deletions

View File

@@ -19,6 +19,6 @@
"listenPort": { "type": "number" },
"publicWsUrl": { "type": "string" }
},
"required": ["followerIdentifiers", "notifyBotToken", "adminUserId", "listenPort"]
"required": ["notifyBotToken", "adminUserId", "listenPort"]
}
}