From 1c3d87de49e514421b3a08bfc3d6d4a822517f98 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 27 Mar 2019 11:58:26 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitRepo.vala b/GitRepo.vala index 2de3ab9c..8d59f7af 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -338,7 +338,7 @@ public class GitRepo : Object //var rs = this.git({ "status" , "-sb" }); var cb = this.getCurrentBranch(); - this.ahead_or_behind = cb.ahead > 0 ? "A" : (cb.benind > 0 ? "B" : ""); + this.ahead_or_behind = cb.ahead > 0 ? "A" : (cb.behind > 0 ? "B" : ""); this.git_diff = this.diffWorking(); -- 2.39.2