From 82753c3723435d445f3a86098869e8cf8c2908ba Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 21 Apr 2018 01:23:36 -0400 Subject: [PATCH] Fixes #348 - bad arg ordering --- CHANGELOG.md | 2 ++ src/gitService.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5bd2e9..7b25252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] ### Fixed - Fixes [#313](https://github.com/eamodio/vscode-gitlens/issues/313) - Unable to show branch history for branch that matches file or folder name +- Fixes [#348](https://github.com/eamodio/vscode-gitlens/issues/348) - "Open in remote" commands disappeared from command palette +- Fixes JSON schema of the `gitlens.advanced.blame.customArguments` setting ## [8.2.2] - 2018-04-19 ### Added diff --git a/src/gitService.ts b/src/gitService.ts index 261ae9a..58f213d 100644 --- a/src/gitService.ts +++ b/src/gitService.ts @@ -730,7 +730,7 @@ export class GitService extends Disposable { if (data === undefined) return undefined; const branch = data.split('\n'); - return new GitBranch(repoPath, branch[0], true, branch[1]); + return new GitBranch(repoPath, branch[0], true, undefined, branch[1]); } async getBranches(repoPath: string | undefined): Promise {