Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

remove unnecesary check and fix anon comment (#252)

Cette révision appartient à :
Andrew Zhao 2017-05-09 21:02:03 -07:00 révisé par Austin
Parent 30d82f77bc
révision e014164a0a

Voir le fichier

@ -46,9 +46,7 @@ func PostCommentHandler(w http.ResponseWriter, r *http.Request) {
content := p.Sanitize(r.FormValue("comment"))
idNum, err := strconv.Atoi(id)
if currentUser.ID <= 0 {
http.Error(w, "Invalid user ID", http.StatusInternalServerError)
}
userID := currentUser.ID
comment := model.Comment{TorrentID: uint(idNum), UserID: userID, Content: content, CreatedAt: time.Now()}