@adhdev/daemon-core 0.5.42 → 0.5.44

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/index.js CHANGED
@@ -2389,7 +2389,7 @@ function readChatHistory(agentType, offset = 0, limit = 30, instanceId) {
2389
2389
  if (sanitizedInstance) {
2390
2390
  return f.startsWith(`${sanitizedInstance}_`);
2391
2391
  }
2392
- return !f.includes("_") || f.match(/^\d{4}-\d{2}-\d{2}\.jsonl$/);
2392
+ return true;
2393
2393
  }).sort().reverse();
2394
2394
  const allMessages = [];
2395
2395
  const needed = offset + limit + 1;