Skip to content

Commit

Permalink
Fixes #348 - bad arg ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Apr 21, 2018
1 parent cc05595 commit 82753c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/gitService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<GitBranch[]> {
Expand Down

0 comments on commit 82753c3

Please sign in to comment.