@delt/claude-alarm 0.6.20 → 0.6.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -0
- package/dist/cli.js.map +1 -1
- package/dist/dashboard/index.html +37 -0
- package/dist/hub/server.js +3 -0
- package/dist/hub/server.js.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/dashboard/index.html +37 -0
package/dist/cli.js
CHANGED
|
@@ -1174,6 +1174,9 @@ var init_server = __esm({
|
|
|
1174
1174
|
return;
|
|
1175
1175
|
}
|
|
1176
1176
|
const config2 = loadConfig();
|
|
1177
|
+
if (telegram.botToken.includes("...") && config2.telegram?.botToken) {
|
|
1178
|
+
telegram.botToken = config2.telegram.botToken;
|
|
1179
|
+
}
|
|
1177
1180
|
config2.telegram = telegram;
|
|
1178
1181
|
saveConfig(config2);
|
|
1179
1182
|
if (this.telegramBot) {
|