From 8cdea2d7ba959082d600b2c6b919a7ccd46f339e Mon Sep 17 00:00:00 2001 From: bouncepaw Date: Sat, 20 Feb 2021 21:17:20 +0500 Subject: [PATCH] Fix revision contents not showing --- history/information.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history/information.go b/history/information.go index f2c0aad..6610917 100644 --- a/history/information.go +++ b/history/information.go @@ -177,6 +177,6 @@ func parseRevisionLine(line string) Revision { // See how the file with `filepath` looked at commit with `hash`. func FileAtRevision(filepath, hash string) (string, error) { - out, err := gitsh("show", hash+":"+filepath) + out, err := gitsh("show", hash+":"+strings.TrimPrefix(filepath, util.WikiDir+"/")) return out.String(), err }