about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cmd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c
index e86b0ea..315edc3 100644
--- a/cmd.c
+++ b/cmd.c
@@ -46,7 +46,10 @@ static void about_fn(void)
 
 static void about_pre(void)
 {
-	if (ctx.repo && !ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/')
+	if (ctx.repo &&
+	    !ctx.qry.path &&
+	    ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
+	    ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/')
 		cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true);
 }
 
19-07-11 17:37:31 -0400'>2019-07-11Factor out clearJune McEnroe 2019-07-11Add bright option to shottyJune McEnroe 2019-07-11Output <b>, <i>, <u> in shottyJune McEnroe 2019-07-10Ignore SM and RMJune McEnroe 2019-07-09Add shotty man page and build itJune McEnroe 2019-07-09Add up -cJune McEnroe 2019-07-09Add options for default colors to shottyJune McEnroe 2019-07-08Use char literals consistentlyJune McEnroe