X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=GitRepo.vala;h=6954437cd13cc3971096b4128846e211125717ef;hb=3c06d975ce5266b5aae86fa6e8cec2cc7d3aa51b;hp=07c68979c0687bf27997de16a0f9d275b7681bb5;hpb=3cca0027d1512c6d702c0e4cabd48b4e0e58d885;p=gitlive diff --git a/GitRepo.vala b/GitRepo.vala index 07c68979..6954437c 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -212,17 +212,24 @@ 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 { - return 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... } } public void set_config(string key, string value) { this.git({ "config" , "gitlive." + key, value }); + this.config_cache.set(key,value); } public bool is_managed() @@ -893,11 +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_all_after); break; } return;