| -rw-r--r-- | ui-repolist.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 7e7f1fb..46cbacf 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -43,10 +43,8 @@ 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); - if (*mtime) { - r->mtime = *mtime; - return 1; - } + r->mtime = *mtime; + return 1; } path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? |