Skip to content

Commit b1deef8

Browse files
authored
Fix updateChannel for code-exploration. (#6882)
1 parent fb89c1c commit b1deef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/packageVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class PackageVersion {
5151
}
5252

5353
public isVsCodeVersionGreaterThan(other: PackageVersion): boolean {
54-
return this.isGreaterThan(other, 'insider');
54+
return this.isGreaterThan(other, 'insider') || this.isGreaterThan(other, 'exploration');
5555
}
5656

5757
public isExtensionVersionGreaterThan(other: PackageVersion): boolean {

0 commit comments

Comments
 (0)