# HG changeset patch # User Sebastien Jodogne # Date 1593247729 -7200 # Node ID ce7709cb380e3e179e1cff811407aed6c43e4ce3 # Parent 4cd94ed75a5bac85057cc77b58177fa0c6a4e9c6 Fix issue #183 (C-ECHO always fails in Orthanc Explorer, regression from 1.6.1 to 1.7.0) diff -r 4cd94ed75a5b -r ce7709cb380e NEWS --- a/NEWS Fri Jun 26 09:18:30 2020 +0200 +++ b/NEWS Sat Jun 27 10:48:49 2020 +0200 @@ -13,7 +13,8 @@ Maintenance ----------- -* Issue #182: Better handling of errors in plugins reading chunked HTTP body +* Issue #182: Better reporting of errors in plugins reading chunked HTTP body +* Fix issue #183 (C-ECHO always fails in Orthanc Explorer, regression from 1.6.1 to 1.7.0) Version 1.7.1 (2020-05-27) diff -r 4cd94ed75a5b -r ce7709cb380e OrthancExplorer/query-retrieve.js --- a/OrthancExplorer/query-retrieve.js Fri Jun 26 09:18:30 2020 +0200 +++ b/OrthancExplorer/query-retrieve.js Sat Jun 27 10:48:49 2020 +0200 @@ -55,6 +55,7 @@ $.ajax({ url: '../modalities/' + server + '/echo', + data: '{}', // Fix for issue #183 (regression from Orthanc 1.6.1 to 1.7.0) type: 'POST', cache: false, async: false,