diff options
Diffstat (limited to 'models/git.go')
-rw-r--r-- | models/git.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/git.go b/models/git.go index 5b2a4060b4..6df8d4ec91 100644 --- a/models/git.go +++ b/models/git.go @@ -291,6 +291,8 @@ func ParsePatch(reader io.Reader) (*Diff, error) { curSection.Lines = append(curSection.Lines, diffLine) continue } else if line[0] == '@' { + curSection = &DiffSection{} + curFile.Sections = append(curFile.Sections, curSection) ss := strings.Split(line, "@@") diffLine := &DiffLine{Type: SectionLine, Content:"@@ "+ss[len(ss)-2]} curSection.Lines = append(curSection.Lines, diffLine) |