Merge pull request #177 from covespace/fix_statusbar_error

Fix versionChanged assignment in statusBarViewBase.ts
This commit is contained in:
boob.yang 2023-06-09 12:43:23 +08:00 committed by GitHub
commit 857f73a4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ export async function dependencyCheck(): Promise<[string, string]> {
if (isVersionChangeCompare === undefined) {
const versionOld = await UiUtilWrapper.secretStorageGet("DevChatVersionOld");
const versionNew = getExtensionVersion();
const versionChanged = versionOld !== versionNew;
versionChanged = versionOld !== versionNew;
UiUtilWrapper.storeSecret("DevChatVersionOld", versionNew!);
isVersionChangeCompare = true;