From: Alan Knowles Date: Wed, 7 Nov 2018 07:08:50 +0000 (+0800) Subject: Fix #5560 - Gitlive - branching wip X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=0b86050bdbbbd2985f7078ca9036be0196455398 Fix #5560 - Gitlive - branching wip --- diff --git a/GitRepo.vala b/GitRepo.vala index 90b7a09b..cdb73b9a 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -338,7 +338,7 @@ public class GitRepo : Object } return false; } - + public void loadActiveTicket() { this.activeTicket = null; @@ -350,7 +350,7 @@ public class GitRepo : Object if (ticket_id.length < 1) { return; } - this.activeTicket = RooTicket.singleton().getById(ticket_id); + this.activeTicket = RooTicket.singleton().getById(ticket_id.strip()); }