Merge pull request #177 from covespace/fix_statusbar_error
Fix versionChanged assignment in statusBarViewBase.ts
This commit is contained in:
commit
857f73a4d9
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user