This commit is contained in:
Henrique Dias 2016-11-06 11:30:21 +00:00
parent 70576793d9
commit bdfa7d8411
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@
<!-- {{ if .IsDir }}
<div class="action" id="info">
<i class="material-icons">info</i>
</div> -->
{{ end }}
</div>
{{ end }}-->
<div class="action" id="download">
<a href="?download=true">
<i class="material-icons" title="Download">file_download</i> <span>Download</span>

View File

@ -18,7 +18,7 @@ func ServeListing(w http.ResponseWriter, r *http.Request, c *config.Config, u *c
var err error
// Loads the content of the directory
listing, err := file.GetListing(u, i.VirtualPath, r.URL.Path)
listing, err := file.GetListing(u, i.VirtualPath, c.AbsoluteURL+r.URL.Path)
if err != nil {
return errors.ErrorToHTTPCode(err, true), err
}