nemoris 0.1.3 → 0.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nemoris",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "Personal AI agent runtime — persistent memory, delivery guarantees, task contracts, self-healing. Local-first, no cloud.",
6
6
  "license": "MIT",
@@ -446,7 +446,7 @@ export class DeliveryManager {
446
446
  ...profileConfig,
447
447
  accountId,
448
448
  channel: profileConfig.channel || "telegram",
449
- chatId: profileConfig.chatId || fallbackChatId,
449
+ chatId: fallbackChatId || profileConfig.chatId || null,
450
450
  botTokenEnv: profileConfig.botTokenEnv || liveAccount.botToken?.id || null
451
451
  };
452
452
  }