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) {
|
if (isVersionChangeCompare === undefined) {
|
||||||
const versionOld = await UiUtilWrapper.secretStorageGet("DevChatVersionOld");
|
const versionOld = await UiUtilWrapper.secretStorageGet("DevChatVersionOld");
|
||||||
const versionNew = getExtensionVersion();
|
const versionNew = getExtensionVersion();
|
||||||
const versionChanged = versionOld !== versionNew;
|
versionChanged = versionOld !== versionNew;
|
||||||
UiUtilWrapper.storeSecret("DevChatVersionOld", versionNew!);
|
UiUtilWrapper.storeSecret("DevChatVersionOld", versionNew!);
|
||||||
|
|
||||||
isVersionChangeCompare = true;
|
isVersionChangeCompare = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user