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 bb6bce0 commit 2ddb8f0Copy full SHA for 2ddb8f0
src/git/gitProviderService.ts
@@ -1003,7 +1003,7 @@ export class GitProviderService implements Disposable {
1003
let disabled = !enabled;
1004
// If we think we should be disabled during startup, check if we have a saved value from the last time this repo was loaded
1005
if (!enabled && this._initializing) {
1006
- disabled = !(this.container.storage.getWorkspace('assumeRepositoriesOnStartup') ?? true);
+ disabled = !(this.container.storage.getWorkspace('assumeRepositoriesOnStartup') ?? false);
1007
}
1008
1009
this.container.telemetry.setGlobalAttribute('enabled', enabled);
0 commit comments