all repos — cgit @ e6749644bc60865cb560a532b14fb3a007fb00ea

a hyperfast web frontend for git written in c

print download link for reference string length == 1

I have a number of repositories that start tagging with just '1' and
count up. Actually references with sting length of one are skipped, this
patch changes that.
Christian Hesse mail@eworm.de
Thu, 20 Feb 2014 20:48:45 +0100
commit

e6749644bc60865cb560a532b14fb3a007fb00ea

parent

2e8e9af1d4161bfe1bfbf1e34b1631b7cc1c1b95

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

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

@@ -105,7 +105,7 @@ struct strbuf filename = STRBUF_INIT;

const char *basename; int free_ref = 0; - if (!ref || strlen(ref) < 2) + if (!ref || strlen(ref) < 1) return; basename = cgit_repobasename(repo->url);