Return plainer message on coll .txt post 404

Ref T493
This commit is contained in:
Matt Baer 2019-08-07 10:26:36 -04:00
parent 35906118d0
commit 582f041748
1 changed files with 3 additions and 1 deletions

View File

@ -1344,8 +1344,10 @@ Are you sure it was ever here?`,
w.Header().Set("Content-Type", fmt.Sprintf("%s; charset=utf-8", contentType))
if !postFound {
w.WriteHeader(http.StatusNotFound)
fmt.Fprintf(w, "Post not found.")
// TODO: return error instead, so status is correctly reflected in logs
return nil
}
if isMarkdown && p.Title.String != "" {
fmt.Fprintf(w, "# %s\n\n", p.Title.String)
}