We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a54a6 commit 9e1da8fCopy full SHA for 9e1da8f
2 files changed
extensions/ql-vscode/src/databases/config/db-config-store.ts
@@ -206,7 +206,7 @@ export class DbConfigStore extends DisposableObject {
206
public doesRemoteOwnerExist(owner: string): boolean {
207
if (!this.config) {
208
throw Error(
209
- "Cannot check remote onwer existence if config is not loaded",
+ "Cannot check remote owner existence if config is not loaded",
210
);
211
}
212
extensions/ql-vscode/src/databases/ui/db-panel.ts
@@ -145,7 +145,7 @@ export class DbPanel extends DisposableObject {
145
return;
146
147
148
- if (this.dbManager.doesRemoteRepoExist(nwo)) {
+ if (this.dbManager.doesRemoteRepoExist(nwo, parentList)) {
149
void showAndLogErrorMessage(`The repository '${nwo}' already exists`);
150
151
0 commit comments