We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ae15b commit f326cf9Copy full SHA for f326cf9
src/extension.ts
@@ -174,11 +174,11 @@ function activate(context: vscode.ExtensionContext) {
174
let devchatStatus = '';
175
let apiKeyStatus = '';
176
setInterval(async () => {
177
- const versionOld = await secretStorage.get("devchat_version_old");
+ const versionOld = await secretStorage.get("DevChatVersionOld");
178
const versionNew = extensionVersion;
179
const versionChanged = versionOld !== versionNew;
180
- await secretStorage.store("devchat_version_old", versionNew!);
181
-
+ await secretStorage.store("DevChatVersionOld", versionNew!);
+
182
// status item has three status type
183
// 1. not in a folder
184
// 2. dependence is invalid
0 commit comments