X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/68ca032dbe7379f78775fb03ef34a9ad2abc409f..cbcdbcf2bff23113fe81df8f11fe7843b8ed637e:/ui-summary.c
diff --git a/ui-summary.c b/ui-summary.c
index 04a466a..ba90510 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -58,11 +58,17 @@ static int print_branch(struct refinfo *ref)
html("
| ");
cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0);
html(" | ");
- cgit_print_age(info->commit->date, -1, NULL);
- html(" | ");
- html_txt(info->author);
- html(" | ");
- cgit_commit_link(info->subject, NULL, NULL, name, NULL);
+
+ if (ref->object->type == OBJ_COMMIT) {
+ cgit_print_age(info->commit->date, -1, NULL);
+ html(" | ");
+ html_txt(info->author);
+ html(" | ");
+ cgit_commit_link(info->subject, NULL, NULL, name, NULL);
+ } else {
+ html(" | | ");
+ cgit_object_link(ref->object);
+ }
html(" |
\n");
return 0;
}