mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-06-01 22:11:08 +02:00
fix: silence memory load errors in working-memory
This commit is contained in:
@@ -249,8 +249,7 @@ async function loadCoreMemory(
|
||||
try {
|
||||
const content = await readFile(path, "utf-8");
|
||||
return JSON.parse(content) as CoreMemory;
|
||||
} catch (error) {
|
||||
console.error("Failed to load core memory:", error);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -356,8 +355,7 @@ async function loadWorkingMemory(
|
||||
}
|
||||
|
||||
return data as WorkingMemory;
|
||||
} catch (error) {
|
||||
console.error("Failed to load working memory:", error);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "opencode-working-memory",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "Advanced four-tier memory architecture for OpenCode with intelligent pressure monitoring and auto-storage governance",
|
||||
"type": "module",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user