This commit is contained in:
Rob Lourens 2021-05-21 09:12:43 -07:00
parent adf68a52d5
commit 70c87f0db9

View file

@ -194,7 +194,8 @@ export default class PHPValidationProvider {
if (vscode.workspace.isTrusted) {
trigger();
}
} else if (this.config!.executableIsUserDefined !== undefined && !this.config!.executableIsUserDefined) {
} else {
if (this.config!.executableIsUserDefined !== undefined && !this.config!.executableIsUserDefined) {
const checkedExecutablePath = this.workspaceStore.get<string | undefined>(Setting.CheckedExecutablePath, undefined);
if (!checkedExecutablePath || checkedExecutablePath !== this.config!.executable) {
if (await this.showCustomTrustDialog()) {
@ -205,6 +206,7 @@ export default class PHPValidationProvider {
return;
}
}
}
trigger();
}