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 1a7255f commit a3cc1a2Copy full SHA for a3cc1a2
src/github/copilotRemoteAgent/gitOperationsManager.ts
@@ -148,7 +148,7 @@ export class GitOperationsManager {
148
const branchRandomNameDictionary = config.get<string[]>(BRANCH_RANDOM_NAME_DICTIONARY);
149
150
// Default to legacy behaviour if config mismatches core
151
- if (!branchWhitespaceChar || !branchRandomNameDictionary) {
+ if (branchWhitespaceChar === undefined || branchRandomNameDictionary === undefined) {
152
return `copilot/vscode${Date.now()}`;
153
}
154
0 commit comments