Before: when you save notifications preferences, "when someone mentions you" always gets deselected as the HTML checkbox is named mentioned but the form processing logic checks for user_mentioned
<input type="checkbox" name="mentioned" {{if .Preferences.UserMentioned}}checked{{end}}>
UserMentioned: r.FormValue("user_mentioned") == "on",
After: HTML checkbox is renamed to user_mentioned so preference is saved correctly
lgtm thanks!