@adhdev/daemon-core 0.9.46 → 0.9.47
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
package/src/commands/router.ts
CHANGED
|
@@ -525,7 +525,7 @@ export class DaemonCommandRouter {
|
|
|
525
525
|
const wantsAll = args?.all === true;
|
|
526
526
|
const offset = wantsAll ? 0 : Math.max(0, Number(args?.offset) || 0);
|
|
527
527
|
const limit = wantsAll ? Number.MAX_SAFE_INTEGER : Math.max(1, Math.min(100, Number(args?.limit) || 30));
|
|
528
|
-
const providerMeta = this.deps.providerLoader.getMeta(providerType);
|
|
528
|
+
const providerMeta = this.deps.providerLoader.resolve?.(providerType) || this.deps.providerLoader.getMeta(providerType);
|
|
529
529
|
const { sessions: historySessions, hasMore, source } = listProviderHistorySessions(providerType, {
|
|
530
530
|
canonicalHistory: providerMeta?.canonicalHistory,
|
|
531
531
|
offset,
|