GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:46:04 +0000 (12:46 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:46:04 +0000 (12:46 +0800)
GitRepo.vala

index 7311e9f..6954437 100644 (file)
@@ -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;