Compare commits

...
Author SHA1 Message Date
abeatrix b145f1331a add changeset 2026-01-16 12:30:59 -08:00
abeatrix 5a31d02da4 fix: remove misleading storage failure warning
Removes the "Saving settings to storage failed" warning message that was incorrectly displayed after successful state re-initialization. This prevents user confusion when the recovery process completes successfully.
2026-01-16 12:29:15 -08:00
2 changed files with 6 additions and 9 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"claude-dev": patch
---
Remove invalid pop-up message about storage failure
+1 -9
View File
@@ -126,16 +126,8 @@ export class Controller {
try {
await StateManager.get().reInitialize(this.task?.taskId)
await this.postStateToWebview()
HostProvider.window.showMessage({
type: ShowMessageType.WARNING,
message: "Saving settings to storage failed.",
})
} catch (recoveryError) {
Logger.error("[Controller] Cache recovery failed:", recoveryError)
HostProvider.window.showMessage({
type: ShowMessageType.ERROR,
message: "Failed to save settings. Please restart the extension.",
})
Logger.error("[Controller] Cache persistence failed to recover:", recoveryError)
}
},
onSyncExternalChange: async () => {