From 5eef112a975db9c82cb2557a721cc7df01ad9b6e Mon Sep 17 00:00:00 2001 From: Daisy Hollman Date: Fri, 20 Mar 2026 22:34:17 +0000 Subject: [PATCH] fix: error message points to real path (/plugin manage), not nonexistent subcommand MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /plugin reconfigure doesn't exist. The actual path is /plugin manage → select plugin → Configure options (ManagePlugins.tsx:1692). :house: Remote-Dev: homespace --- external_plugins/discord/server.ts | 2 +- external_plugins/telegram/server.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/external_plugins/discord/server.ts b/external_plugins/discord/server.ts index 6929027..33465da 100644 --- a/external_plugins/discord/server.ts +++ b/external_plugins/discord/server.ts @@ -53,7 +53,7 @@ const STATIC = process.env.DISCORD_ACCESS_MODE === 'static' if (!TOKEN) { process.stderr.write( `discord channel: DISCORD_BOT_TOKEN required\n` + - ` configure via: /plugin reconfigure discord\n` + + ` re-enter via: /plugin manage → discord → Configure options\n` + ` (stored in keychain/credentials.json, not settings.json)\n`, ) process.exit(1) diff --git a/external_plugins/telegram/server.ts b/external_plugins/telegram/server.ts index a919306..8a1a985 100644 --- a/external_plugins/telegram/server.ts +++ b/external_plugins/telegram/server.ts @@ -46,7 +46,7 @@ const STATIC = process.env.TELEGRAM_ACCESS_MODE === 'static' if (!TOKEN) { process.stderr.write( `telegram channel: TELEGRAM_BOT_TOKEN required\n` + - ` configure via: /plugin reconfigure telegram\n` + + ` re-enter via: /plugin manage → telegram → Configure options\n` + ` (stored in keychain/credentials.json, not settings.json)\n`, ) process.exit(1)