We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f5a42 commit dec90dfCopy full SHA for dec90df
src/commands/force/org/open.ts
@@ -69,7 +69,7 @@ export class OrgOpenCommand extends SfdxCommand {
69
private async checkLightningDomain(url: string): Promise<void> {
70
const domain = `https://${/https?:\/\/([^.]*)/.exec(url)[1]}.lightning.force.com`;
71
const timeout = new Duration(new Env().getNumber('SFDX_DOMAIN_RETRY', 240), Duration.Unit.SECONDS);
72
- if (sfdc.isInternalUrl(domain) || timeout.seconds === 0) {
+ if (sfdc.isInternalUrl(url) || timeout.seconds === 0) {
73
return;
74
}
75
0 commit comments