Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Fix newly introduced JsonCpp usage (lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBriza committed Sep 19, 2019
1 parent 3059e96 commit 3e3de19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5465,7 +5465,7 @@ error Context::signupGoogle(
HTTPSRequest req;
req.host = urls::API();
req.relative_url = ss.str();
req.payload = Json::StyledWriter().write(user);
req.payload = JsonHelper::writer()->write(user);

HTTPSResponse resp = toggl_client->Post(req);
if (resp.err != noError) {
Expand Down

0 comments on commit 3e3de19

Please sign in to comment.