Tags sends [] instead of null

This commit is contained in:
Isaac Bythewood
2013-03-03 13:55:35 +00:00
parent 6e78ce12ea
commit 39aa6818f2

View File

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