diff options
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index f929cb7..91911e0 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -275,6 +275,8 @@ void cgit_print_repolist() | |||
275 | html("<table summary='repository list' class='list nowrap'>"); | 275 | html("<table summary='repository list' class='list nowrap'>"); |
276 | for (i = 0; i < cgit_repolist.count; i++) { | 276 | for (i = 0; i < cgit_repolist.count; i++) { |
277 | ctx.repo = &cgit_repolist.repos[i]; | 277 | ctx.repo = &cgit_repolist.repos[i]; |
278 | if (ctx.repo->hide || ctx.repo->ignore) | ||
279 | continue; | ||
278 | if (!(is_match(ctx.repo) && is_in_url(ctx.repo))) | 280 | if (!(is_match(ctx.repo) && is_in_url(ctx.repo))) |
279 | continue; | 281 | continue; |
280 | hits++; | 282 | hits++; |