Browse Source

Tags sends [] instead of null

tags/v1.0.0
Isaac Bythewood 11 years ago
parent
commit
39aa6818f2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pinry/static/js/helpers.js

+ 1
- 1
pinry/static/js/helpers.js View File

@@ -20,7 +20,7 @@ function cleanTags(tags) {
tags[i] = tags[i].trim();
}
} else {
return null;
return [];
}
return tags;
}


Loading…
Cancel
Save