| Index: remoting/webapp/crd/js/xhr.js
|
| diff --git a/remoting/webapp/crd/js/xhr.js b/remoting/webapp/crd/js/xhr.js
|
| index bb60b87f5949e73db40661a0fbb13596194fe765..d37e7738708eb740dc38afd9f7ef551c6a7eb792 100644
|
| --- a/remoting/webapp/crd/js/xhr.js
|
| +++ b/remoting/webapp/crd/js/xhr.js
|
| @@ -199,7 +199,8 @@ remoting.xhr.defaultResponse = function(onDone, onError) {
|
| /** @param {XMLHttpRequest} xhr */
|
| var result = function(xhr) {
|
| /** @type {remoting.Error} */
|
| - var error = remoting.Error.fromHttpError(/** @type {number} */ (xhr.status))
|
| + var error =
|
| + remoting.Error.fromHttpStatus(/** @type {number} */ (xhr.status));
|
| if (error == remoting.Error.NONE) {
|
| onDone();
|
| } else {
|
|
|