diff options
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -46,7 +46,10 @@ static void about_fn(void) | |||
46 | 46 | ||
47 | static void about_pre(void) | 47 | static void about_pre(void) |
48 | { | 48 | { |
49 | if (ctx.repo && !ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/') | 49 | if (ctx.repo && |
50 | !ctx.qry.path && | ||
51 | ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' && | ||
52 | ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/') | ||
50 | cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true); | 53 | cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true); |
51 | } | 54 | } |
52 | 55 | ||