From 3c06d975ce5266b5aae86fa6e8cec2cc7d3aa51b Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 19 Dec 2018 12:46:04 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 7311e9f4..6954437c 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -212,14 +212,17 @@ public class GitRepo : Object public string get_config(string key) { if (this.config_cache.has_key(key)) { + //GLib.debug("get_config %s = '%s'", key, this.config_cache.get(key)); return this.config_cache.get(key); } try { - var ret = this.git({ "config" , "gitlive." + key }); + var ret = this.git({ "config" , "gitlive." + key }).strip(); this.config_cache.set(key, ret); + //GLib.debug("get_config %s = '%s'", key, ret); return ret; } catch (Error e) { this.config_cache.set(key, ""); + //GLib.debug("get_config (fail) %s = '%s'", key, ""); return ""; // happens when there is nothing set... } @@ -897,14 +900,14 @@ public class GitRepo : Object return; } - + GLib.debug("call after load = %s", update_all_after); switch (update_all_after) { case "show_clones": Clones.singleton().show(); break; default: - GLib.debug("Unkown call after load = %s", update_after_all); + GLib.debug("Unkown call after load = %s", update_all_after); break; } return; -- 2.39.2