Skip to content

#471 [WebApiError] Error message type should be a string #472

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/http-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var _toError = function(response) {
}

/* Other type of error, or unhandled Web API error format */
return new WebapiError(response.body, response.headers, response.statusCode, response.body);
return new WebapiError(response.body, response.headers, response.statusCode, 'An error occurred while communicating with Spotify\'s Web API.');
};

/* Make the request to the Web API */
Expand Down Expand Up @@ -130,4 +130,4 @@ HttpManager.put = function(request, callback) {
HttpManager._makeRequest(method, options, request.getURI(), callback);
};

module.exports = HttpManager;
module.exports = HttpManager;