소스 검색

Fixes wrong remote disconnection

main
Eric Amodio 5 년 전
부모
커밋
efc3db218c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/commands/remoteProviders.ts

+ 1
- 1
src/commands/remoteProviders.ts 파일 보기

@ -94,7 +94,7 @@ export class DisconnectRemoteProviderCommand extends Command {
async execute(args?: DisconnectRemoteProviderCommandArgs): Promise<any> {
if (args?.repoPath == null || args?.remote == null) return undefined;
const remote = (await Container.git.getRemotes(args.repoPath)).find(r => args.remote);
const remote = (await Container.git.getRemotes(args.repoPath)).find(r => r.name === args.remote);
if (!remote?.provider?.hasApi()) return undefined;
return remote.provider.disconnect();

불러오는 중...
취소
저장