ui-repolist: do not use agefile if it's date could not be parsed

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
lh/pretty-blob-view
Ferry Huberts 12 years ago committed by Jason A. Donenfeld
parent 2ad9063cb5
commit e52a5226b8

@ -43,8 +43,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 ?

Loading…
Cancel
Save