GitRepo.vala
[gitlive] / GitRepo.vala
index 3b12ce6..07c6897 100644 (file)
@@ -210,6 +210,10 @@ public class GitRepo : Object
     
     
     public string get_config(string key) {
+    
+       if (this.config_cache.has_key(key)) {
+               return this.config_cache.get(key);
+               }
        try {
                return  this.git({ "config" , "gitlive." + key });
        } catch (Error e) {