Преглед на файлове

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();

Зареждане…
Отказ
Запис