mirror of https://github.com/perkeep/perkeep.git
fix importer bloblink
ui no longer accepts ?b=blobref form Change-Id: I40fb0aa75fe1664d5b1446c0d4670a3348935c93
This commit is contained in:
parent
92ec2f678b
commit
4800931d55
|
@ -170,7 +170,7 @@ func NewHost(hc HostConfig) (*Host, error) {
|
|||
if h.uiPrefix == "" {
|
||||
return template.HTML(br.String())
|
||||
}
|
||||
return template.HTML(fmt.Sprintf("<a href=\"%s?b=%s\">%s</a>", h.uiPrefix, br, br))
|
||||
return template.HTML(fmt.Sprintf("<a href=\"%s/%s\">%s</a>", h.uiPrefix, br, br))
|
||||
},
|
||||
})
|
||||
for k, impl := range importers {
|
||||
|
|
Loading…
Reference in New Issue