can't edit bonks, but allow other edits

This commit is contained in:
Ted Unangst 2019-10-09 16:12:46 -04:00
parent d015e8ae38
commit 60f301cc09
1 changed files with 2 additions and 2 deletions

4
web.go
View File

@ -902,8 +902,8 @@ func edithonkpage(w http.ResponseWriter, r *http.Request) {
user, _ := butwhatabout(u.Username)
xid := r.FormValue("xid")
honk := getxonk(u.UserID, xid)
if honk == nil || honk.Honker != user.URL || honk.What != "honk" {
log.Printf("no edit")
if honk == nil || honk.Honker != user.URL || honk.What == "bonk" {
http.Error(w, "no editing that please", http.StatusInternalServerError)
return
}