| Index: chrome/browser/resources/google_now/utility.js
|
| diff --git a/chrome/browser/resources/google_now/utility.js b/chrome/browser/resources/google_now/utility.js
|
| index a987dd1420eea173484c70852e4c96190862cd7e..9bb9c7a98e335ac89437669372a1997c579ba8d5 100644
|
| --- a/chrome/browser/resources/google_now/utility.js
|
| +++ b/chrome/browser/resources/google_now/utility.js
|
| @@ -114,8 +114,12 @@ function sendErrorReport(error) {
|
| }
|
| }
|
|
|
| + var errorText = error.name;
|
| + if (error.canSendMessageToServer)
|
| + errorText = errorText + ': ' + error.message;
|
| +
|
| var requestParameters =
|
| - 'error=' + encodeURIComponent(error.name) +
|
| + 'error=' + encodeURIComponent(errorText) +
|
| '&script=' + encodeURIComponent(file) +
|
| '&line=' + encodeURIComponent(line) +
|
| '&trace=' + encodeURIComponent(filteredStack);
|
|
|