ソースを参照

Fixes wrong remote connection

main
Eric Amodio 4年前
コミット
aace53be2d
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/commands/remoteProviders.ts

+ 1
- 1
src/commands/remoteProviders.ts ファイルの表示

@ -42,7 +42,7 @@ export class ConnectRemoteProviderCommand extends Command {
if (args?.repoPath == null || args?.remote == null) return false;
const remotes = await Container.git.getRemotes(args.repoPath);
const remote = remotes.find(r => args.remote);
const remote = remotes.find(r => r.name === args.remote);
if (!remote?.provider?.hasApi()) return false;
const connected = await remote.provider.connect();

読み込み中…
キャンセル
保存