mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
ui-repolist: do not use agefile if it's date could not be parsed
Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
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);
|
path = fmt("%s/%s", repo->path, ctx.cfg.agefile);
|
||||||
if (stat(path, &s) == 0) {
|
if (stat(path, &s) == 0) {
|
||||||
*mtime = read_agefile(path);
|
*mtime = read_agefile(path);
|
||||||
r->mtime = *mtime;
|
if (*mtime) {
|
||||||
return 1;
|
r->mtime = *mtime;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ?
|
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ?
|
||||||
|
Loading…
Reference in New Issue
Block a user