Join together all errors if mulitple

This commit is contained in:
Kane York 2015-06-30 11:40:24 -07:00
parent 05010b6b33
commit 130d6a3a26

View file

@ -28,7 +28,7 @@ function extractError(error) {
if (parsedJSON) {
if (parsedJSON.errors && parsedJSON.errors.length > 0) {
parsedError = parsedJSON.errors[0];
parsedError = parsedJSON.errors.join("<br>");
} else if (parsedJSON.error) {
parsedError = parsedJSON.error;
} else if (parsedJSON.failed) {