diff --git a/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java b/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java index 6c84a9bbc6f..dd82b0b451b 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java +++ b/ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java @@ -69,7 +69,7 @@ public class DebugServerException extends RuntimeException { JSONObject jsonObject = new JSONObject(str); String fullFileName = jsonObject.getString("filename"); return new DebugServerException( - jsonObject.getString("description"), + jsonObject.getString("message"), shortenFileName(fullFileName), jsonObject.getInt("lineNumber"), jsonObject.getInt("column"));