Skip to content

Commit 82753c3

Browse files
committed
Fixes #348 - bad arg ordering
1 parent cc05595 commit 82753c3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77
## [Unreleased]
88
### Fixed
99
- Fixes [#313](https://github.com/eamodio/vscode-gitlens/issues/313) - Unable to show branch history for branch that matches file or folder name
10+
- Fixes [#348](https://github.com/eamodio/vscode-gitlens/issues/348) - "Open in remote" commands disappeared from command palette
11+
- Fixes JSON schema of the `gitlens.advanced.blame.customArguments` setting
1012

1113
## [8.2.2] - 2018-04-19
1214
### Added

src/gitService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ export class GitService extends Disposable {
730730
if (data === undefined) return undefined;
731731

732732
const branch = data.split('\n');
733-
return new GitBranch(repoPath, branch[0], true, branch[1]);
733+
return new GitBranch(repoPath, branch[0], true, undefined, branch[1]);
734734
}
735735

736736
async getBranches(repoPath: string | undefined): Promise<GitBranch[]> {

0 commit comments

Comments
 (0)