From: Ferry Huberts <[email protected]>

Signed-off-by: Ferry Huberts <[email protected]>
---
 ui-repolist.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ui-repolist.c b/ui-repolist.c
index 4b21e2f..bb21ace 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -41,8 +41,10 @@ static int get_repo_modtime(const struct cgit_repo *repo, 
time_t *mtime)
        path = fmt("%s/%s", repo->path, ctx.cfg.agefile);
        if (stat(path, &s) == 0) {
                *mtime = read_agefile(path);
-               r->mtime = *mtime;
-               return 1;
+               if (*mtime) {
+                       r->mtime = *mtime;
+                       return 1;
+               }
        }
 
        path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch);
-- 
1.7.7.6


_______________________________________________
cgit mailing list
[email protected]
http://hjemli.net/mailman/listinfo/cgit

Reply via email to