Skip to content
This repository has been archived by the owner on Jun 27, 2020. It is now read-only.

Commit

Permalink
Fix bugs on download page
Browse files Browse the repository at this point in the history
  • Loading branch information
pgaskin committed Jun 28, 2017
1 parent 00aabaf commit 4e79d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func DownloadHandler(w http.ResponseWriter, r *http.Request) {
return a.Title < b.Title
})
for _, b := range sbl {
io.WriteString(w, fmt.Sprintf("<a href=\"/download/%s\">%s - %s - %s - %s</a><br>", b.ID, b.Title, b.Author, b.Series.Name, b.Series.Index))
io.WriteString(w, fmt.Sprintf("<a href=\"/download/%s\">%s - %s - %s (%v)</a><br>", b.ID, b.Title, b.Author, b.Series.Name, b.Series.Index))
}
return
}
Expand Down

0 comments on commit 4e79d27

Please sign in to comment.