This is an automated email from the git hooks/post-receive script. New commit to branch sync-timebundle in repository jtimer. See https://gitlab.nuiton.org/chorem/jtimer.git commit e97baf47b1dac293062793d6ca6618d310bb0380 Author: Eric Chatellier <chatellier@codelutin.com> Date: Wed Mar 8 10:33:47 2017 +0100 Extract json content for debug --- .../java/org/chorem/jtimer/plugins/timebundle/RemoteSynchronizer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/chorem/jtimer/plugins/timebundle/RemoteSynchronizer.java b/src/main/java/org/chorem/jtimer/plugins/timebundle/RemoteSynchronizer.java index 2d76ad5..cf9102d 100644 --- a/src/main/java/org/chorem/jtimer/plugins/timebundle/RemoteSynchronizer.java +++ b/src/main/java/org/chorem/jtimer/plugins/timebundle/RemoteSynchronizer.java @@ -135,7 +135,8 @@ public class RemoteSynchronizer { RemoteProject project = null; try { - JSONObject json = new JSONObject(IOUtils.toString(new URL(url), Charset.forName("UTF-8"))); + String source = IOUtils.toString(new URL(url), Charset.forName("UTF-8")); + JSONObject json = new JSONObject(source); JSONObject jsonProject = json.getJSONObject("project"); JSONObject jsonTasks = json.getJSONObject("tasks"); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.