@badgerclaw/connect 1.4.13 → 1.4.14

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": "@badgerclaw/connect",
3
- "version": "1.4.13",
3
+ "version": "1.4.14",
4
4
  "description": "BadgerClaw channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -36,7 +36,7 @@ export type MonitorMatrixOpts = {
36
36
  };
37
37
 
38
38
  const DEFAULT_MEDIA_MAX_MB = 20;
39
- export const DEFAULT_STARTUP_GRACE_MS = 5000;
39
+ export const DEFAULT_STARTUP_GRACE_MS = 300_000; // 5 minutes — process messages from before/after startup
40
40
 
41
41
  export function isConfiguredMatrixRoomEntry(entry: string): boolean {
42
42
  return entry.startsWith("!") || (entry.startsWith("#") && entry.includes(":"));