diff --git a/app/assets/javascripts/discourse/lib/ajax-error.js.es6 b/app/assets/javascripts/discourse/lib/ajax-error.js.es6 index b7a8f24c6f3..04d6d0dbc7e 100644 --- a/app/assets/javascripts/discourse/lib/ajax-error.js.es6 +++ b/app/assets/javascripts/discourse/lib/ajax-error.js.es6 @@ -28,7 +28,7 @@ function extractError(error) { if (parsedJSON) { if (parsedJSON.errors && parsedJSON.errors.length > 0) { - parsedError = parsedJSON.errors[0]; + parsedError = parsedJSON.errors.join("
"); } else if (parsedJSON.error) { parsedError = parsedJSON.error; } else if (parsedJSON.failed) { @@ -36,6 +36,12 @@ function extractError(error) { } } + if (!parsedError) { + if (error.status && error.status >= 400) { + parsedError = error.status + " " + error.statusText; + } + } + return parsedError || I18n.t('generic_error'); }