We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ebcfd9 commit 329afa6Copy full SHA for 329afa6
src/vs/workbench/contrib/cortexide/browser/chatThreadService.ts
@@ -593,7 +593,7 @@ class ChatThreadService extends Disposable implements IChatThreadService {
593
};
594
595
// !!! this is important for properly restoring URIs and images from storage
596
- // should probably re-use code from void/src/vs/base/common/marshalling.ts instead. but this is simple enough
+ // should probably re-use code from src/vs/base/common/marshalling.ts instead. but this is simple enough
597
private _convertThreadDataFromStorage(threadsStr: string): ChatThreads {
598
return JSON.parse(threadsStr, (key, value) => {
599
if (value && typeof value === "object" && value.$mid === 1) {
0 commit comments