Skip to content

Commit

Permalink
Issue #27 - Fixed problem with the incorrect API endpoint used for ta…
Browse files Browse the repository at this point in the history
…sks chaining in the `Next` method.
  • Loading branch information
OlegRa committed May 28, 2020
1 parent 8ffddf3 commit 1b3a91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ILovePDF/ILovePDF/Core/RequestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public ConnectTaskResponse ConnectTask(String parentTaskId, String tool)
{
addAuthorizationHeader(httpClient);

var link = StringHelpers.Invariant($"{Settings.StartUrl}/{Settings.V1}/start/next");
var link = StringHelpers.Invariant($"{Settings.StartUrl}/{Settings.V1}/task/next");

var multipartFormDataContent = new MultipartFormDataContent();

Expand Down

0 comments on commit 1b3a91c

Please sign in to comment.