Skip to content

Commit

Permalink
Fix #437
Browse files Browse the repository at this point in the history
  • Loading branch information
not-an-aardvark committed Nov 25, 2015
1 parent f582d1b commit c9f4ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/sharedClientFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = {
return "Please choose a type.";
}
if (ref.type === "egg" || ref.type === "giveaway" || ref.type === "misc" || ref.type === "eggcheck" || ref.type === "involvement") {
if (!ref.descrip || ref.description) {
if (!ref.descrip && !ref.description) {
return "Make sure you enter all the information";
}
} else if (!ref.got || !ref.gave) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "FlairHQ",
"version": "2.2.1",
"version": "2.2.2",
"description": "A project to allow easy adding of flair applications for subreddits (focusing initially on /r/pokemontrades) and easy moderation for moderators.",
"scripts": {
"start": "node ./node_modules/sails/bin/sails.js lift"
Expand Down

0 comments on commit c9f4ae9

Please sign in to comment.