1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-04-04 17:57:05 +00:00

Fix revision contents not showing

This commit is contained in:
bouncepaw 2021-02-20 21:17:20 +05:00
parent 1917e50367
commit 8cdea2d7ba

View File

@ -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
}