remove \r from status

master
Ted Unangst 5 years ago
parent 169c7875a8
commit 002ddf12a5

@ -1132,7 +1132,7 @@ func saveuser(w http.ResponseWriter, r *http.Request) {
} else {
options.Avatar = ""
}
whatabout = strings.TrimSpace(whatabout)
whatabout = strings.Replace(strings.TrimSpace(whatabout), "\r", "", -1)
j, err := jsonify(options)
if err == nil {
_, err = db.Exec("update users set about = ?, options = ? where username = ?", whatabout, j, u.Username)

Loading…
Cancel
Save