Skip to content

Commit

Permalink
Added trailing slash to /boards/ call
Browse files Browse the repository at this point in the history
  • Loading branch information
motionharvest committed Oct 9, 2018
1 parent 2686741 commit ba23fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Trello.prototype.addBoard = function (name, description, organizationId, callbac
if (organizationId !== null)
query.idOrganization = organizationId;

return makeRequest(rest.post, this.uri + '/1/boards', {query: query}, callback);
return makeRequest(rest.post, this.uri + '/1/boards/', {query: query}, callback);
};

Trello.prototype.updateBoardPref = function (boardId, field, value, callback) {
Expand Down

0 comments on commit ba23fd0

Please sign in to comment.