fix(core): move project memory dir under tmp directory (#24542)

This commit is contained in:
Sandy Tao
2026-04-02 10:50:43 -07:00
committed by GitHub
parent 8ef6e08263
commit 2567ad5cd9
2 changed files with 4 additions and 4 deletions
+1 -2
View File
@@ -267,8 +267,7 @@ export class Storage {
}
getProjectMemoryDir(): string {
const identifier = this.getProjectIdentifier();
return path.join(Storage.getGlobalGeminiDir(), 'memory', identifier);
return this.getProjectMemoryTempDir();
}
getProjectMemoryTempDir(): string {