From ba23fd063fe050989161e7d2317a284cbdd3096c Mon Sep 17 00:00:00 2001 From: Aaron Sherrill Date: Tue, 9 Oct 2018 11:00:38 -0400 Subject: [PATCH] Added trailing slash to /boards/ call --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 9b07098..079451a 100644 --- a/main.js +++ b/main.js @@ -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) {