@adhdev/daemon-core 0.9.82-rc.92 → 0.9.82-rc.93
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -5876,7 +5876,7 @@ ${lastSnapshot}`;
|
|
|
5876
5876
|
const parseScreenText = this.getParseScreenText(screenText);
|
|
5877
5877
|
const cached = this.parsedStatusCache;
|
|
5878
5878
|
const accumulatedRawBufferKey = this.getAccumulatedRawBufferCacheKey();
|
|
5879
|
-
if (cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.accumulatedRawBufferKey === accumulatedRawBufferKey && cached.screenText === parseScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
|
|
5879
|
+
if (!this.providerOwnsTranscript() && cached && cached.responseBuffer === this.responseBuffer && cached.currentTurnScope === this.currentTurnScope && cached.recentOutputBuffer === this.recentOutputBuffer && cached.accumulatedBuffer === this.accumulatedBuffer && cached.accumulatedRawBufferKey === accumulatedRawBufferKey && cached.screenText === parseScreenText && cached.currentStatus === this.currentStatus && cached.activeModal === this.activeModal && cached.cliName === this.cliName) {
|
|
5880
5880
|
return cached.result;
|
|
5881
5881
|
}
|
|
5882
5882
|
const parsed = this.runParseSession();
|