all repos — cgit @ e52a5226b83dc5232adb7d9076cae3ad4b123df4

a hyperfast web frontend for git written in c

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

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Ferry Huberts ferry.huberts@pelagic.nl
Tue, 09 Oct 2012 13:09:58 +0200
commit

e52a5226b83dc5232adb7d9076cae3ad4b123df4

parent

2ad9063cb53b55b1456c7d2ed08e6fb99d32ab78

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M ui-repolist.cui-repolist.c

@@ -43,8 +43,10 @@ }

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 ?