commit ae8535e329f9b78bf6e382b3e9ba08d4c4f7eb70
parent d3db909b464737863e9b54ae7c28393f0871aed4
Author: Chris Bracken <chris@bracken.jp>
Date: Fri, 20 Feb 2026 18:08:46 +0900
gopher: correct relative path back to log in title
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/writer/gopher/commit.c b/src/writer/gopher/commit.c
@@ -56,7 +56,7 @@ GopherCommit* gopher_commit_create(const GitRepo* repo,
err(1, "fopen: %s", path);
}
free(path);
- commit->page = gopher_page_create(commit->out, repo, fs, title, "");
+ commit->page = gopher_page_create(commit->out, repo, fs, title, "../");
commit->max_files = 1000;
commit->max_deltas = 1000;
commit->max_delta_lines = 100000;