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 037fb49 commit 23ba657Copy full SHA for 23ba657
src/session.ts
@@ -459,8 +459,8 @@ export class SessionManager implements Middleware {
459
const debugPowerShellExeDetails =
460
powershellExeName === undefined
461
? this.PowerShellExeDetails
462
- : ((await this.findPowerShell(powershellExeName)) ??
463
- this.PowerShellExeDetails);
+ : await this.findPowerShell(powershellExeName) ??
+ this.PowerShellExeDetails;
464
465
// TODO: It might not be totally necessary to update the session
466
// settings here, but I don't want to accidentally change this behavior
0 commit comments