Skip to content

Commit

Permalink
Merge pull request #52 from leonhartX/fix-bitbucket-paginate
Browse files Browse the repository at this point in the history
fix paginate request
  • Loading branch information
leonhartX authored Dec 27, 2017
2 parents 28d524e + 72406f3 commit f3b5ffb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.2.1",
"version": "3.2.2",
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_appName__",
Expand Down
2 changes: 1 addition & 1 deletion src/scm/bitbucket.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class Bitbucket {
const link = response.next;
let url = null;
if (link) {
url = `${link}&access_token=${data.token}`;
url = link;
}
resolve({ items: data.items, url: url });
})
Expand Down

0 comments on commit f3b5ffb

Please sign in to comment.