diff options
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 7272e87..af52f9b 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -329,7 +329,8 @@ void cgit_print_repolist(void) | |||
329 | repourl = cgit_repourl(ctx.repo->url); | 329 | repourl = cgit_repourl(ctx.repo->url); |
330 | html_link_open(repourl, NULL, NULL); | 330 | html_link_open(repourl, NULL, NULL); |
331 | free(repourl); | 331 | free(repourl); |
332 | html_ntxt(ctx.cfg.max_repodesc_len, ctx.repo->desc); | 332 | if (html_ntxt(ctx.repo->desc, ctx.cfg.max_repodesc_len) < 0) |
333 | html("..."); | ||
333 | html_link_close(); | 334 | html_link_close(); |
334 | html("</td><td>"); | 335 | html("</td><td>"); |
335 | if (ctx.cfg.enable_index_owner) { | 336 | if (ctx.cfg.enable_index_owner) { |