@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.js
CHANGED
|
@@ -5881,7 +5881,7 @@ ${lastSnapshot}`;
|
|
|
5881
5881
|
const parseScreenText = this.getParseScreenText(screenText);
|
|
5882
5882
|
const cached = this.parsedStatusCache;
|
|
5883
5883
|
const accumulatedRawBufferKey = this.getAccumulatedRawBufferCacheKey();
|
|
5884
|
-
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) {
|
|
5884
|
+
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) {
|
|
5885
5885
|
return cached.result;
|
|
5886
5886
|
}
|
|
5887
5887
|
const parsed = this.runParseSession();
|