Skip to content

Commit

Permalink
Correct condition when logging whether shell integration is active (#…
Browse files Browse the repository at this point in the history
…22347)

Introduced by #22346
  • Loading branch information
Kartik Raj authored Oct 25, 2023
1 parent b46e1a6 commit e604687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/terminals/envCollectionActivation/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
// https://code.visualstudio.com/docs/terminal/shell-integration#_automatic-script-injection
return true;
}
if (isEnabled) {
if (!isEnabled) {
traceVerbose('Shell integrated is disabled in user settings.');
}
return false;
Expand Down

0 comments on commit e604687

Please sign in to comment.