From f5e09619ca68916e803fe63f8c9c67d78d1f150a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 27 Mar 2019 11:55:42 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitRepo.vala b/GitRepo.vala index 08917693..1075fa25 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -341,7 +341,7 @@ public class GitRepo : Object this.ahead_or_behind = rs.contains("[ahead") ? "A" : (rs.contains("[behind") ? "B" : ""); - this.git_diff = this.git({ "diff" , "HEAD", "--no-color" }); + this.git_diff = this.diffWorking(); } -- 2.39.2