Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 44e8de5

Browse filesBrowse files
committed
nit
1 parent 1951915 commit 44e8de5
Copy full SHA for 44e8de5

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed

‎dist/index.js

Copy file name to clipboardExpand all lines: dist/index.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ class GitCommandManager {
704704
parents: detailLines[2].split(' '),
705705
subject: detailLines[3],
706706
body: detailLines.slice(4, endOfBodyIndex).join('\n'),
707-
changes: lines.slice(endOfBodyIndex + 1 + 1, -1).map(line => {
707+
changes: lines.slice(endOfBodyIndex + 2, -1).map(line => {
708708
const change = line.match(/^:\d{6} (\d{6}) \w{7} \w{7} ([AMD])\s+(.*)$/);
709709
if (change) {
710710
return {

‎src/git-command-manager.ts

Copy file name to clipboardExpand all lines: src/git-command-manager.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class GitCommandManager {
171171
parents: detailLines[2].split(' '),
172172
subject: detailLines[3],
173173
body: detailLines.slice(4, endOfBodyIndex).join('\n'),
174-
changes: lines.slice(endOfBodyIndex + 1 + 1, -1).map(line => {
174+
changes: lines.slice(endOfBodyIndex + 2, -1).map(line => {
175175
const change = line.match(/^:\d{6} (\d{6}) \w{7} \w{7} ([AMD])\s+(.*)$/)
176176
if (change) {
177177
return {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.