fixing the salsa version check

This commit is contained in:
Erich Gamma 2016-01-26 14:09:14 +01:00
parent 5c2e8fa0bf
commit c4df2b16c1

View file

@ -213,7 +213,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
return true;
}
// just use a string compare, don't want to add a dependency on semver
return desc.version.indexOf('1.8') >= 0;
return desc.version.indexOf('1.8') >= 0 || desc.version.indexOf('1.9') >= 0 ;
}
private serviceExited(restart: boolean): void {