Parcourir la source

Fixes wrong remote disconnection

main
Eric Amodio il y a 5 ans
Parent
révision
efc3db218c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/commands/remoteProviders.ts

+ 1
- 1
src/commands/remoteProviders.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer