Skip to content

Commit

Permalink
hotfix: next link must contain protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
gunzip committed Feb 28, 2020
1 parent 9b3290a commit f7f86ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GetUsers/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ export function GetUsersHandler(
ResponseSuccessJson({
items: users,
next: userSubscriptionList.nextLink
? `${azureApimHost}/adm/users?cursor=${cursor + users.length}`
? `https://${azureApimHost}/adm/users?cursor=${cursor +
users.length}`
: undefined
})
);
Expand Down

0 comments on commit f7f86ab

Please sign in to comment.