diff --git a/app/assets/javascripts/discourse/lib/ajax-error.js.es6 b/app/assets/javascripts/discourse/lib/ajax-error.js.es6 index 5cc5464e54d..de96aa14d8a 100644 --- a/app/assets/javascripts/discourse/lib/ajax-error.js.es6 +++ b/app/assets/javascripts/discourse/lib/ajax-error.js.es6 @@ -34,6 +34,8 @@ export function extractError(error, defaultMessage) { parsedError = parsedJSON.errors.join("
"); } else if (parsedJSON.error) { parsedError = parsedJSON.error; + } else if (parsedJSON.message) { + parsedError = parsedJSON.message; } else if (parsedJSON.failed) { parsedError = parsedJSON.failed; }