@wrongstack/core 0.256.1 → 0.257.0

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.
@@ -3207,7 +3207,7 @@ var DefaultSessionReader = class {
3207
3207
  this.store = opts.store;
3208
3208
  }
3209
3209
  async query(q = {}) {
3210
- const raw = await this.store.list(q.limit ? Math.max(q.limit * 4, 100) : 1e3);
3210
+ const raw = await this.store.list(q.limit ? Math.max(q.limit, 100) : 1e3);
3211
3211
  const titleNeedle = q.titleContains?.toLowerCase();
3212
3212
  const filtered = raw.filter((s) => {
3213
3213
  if (q.since && s.startedAt < q.since) return false;