# HG changeset patch # User Sebastien Jodogne # Date 1566807895 -7200 # Node ID 9b401e49a8e3622bd810b304da0e8178f8842b64 # Parent ec6b362b90b25d402208106e02c8742f294a1275# Parent 351db3241ea64fac7a9a8f954dfa10630ef4126d merge diff -r ec6b362b90b2 -r 9b401e49a8e3 NEWS --- a/NEWS Mon Aug 26 10:24:38 2019 +0200 +++ b/NEWS Mon Aug 26 10:24:55 2019 +0200 @@ -2,6 +2,7 @@ =============================== * Support of "window", "viewport" and "quality" parameters in "Retrieve Rendered Transaction" +* Fix handling of the "Forwarded" HTTP header * Added explicit "Accept" header to avoid uncompressing DICOM files by Google cloud https://groups.google.com/d/msg/orthanc-users/w1Ekrsc6-U8/T2a_DoQ5CwAJ diff -r ec6b362b90b2 -r 9b401e49a8e3 Plugin/Configuration.cpp --- a/Plugin/Configuration.cpp Mon Aug 26 10:24:38 2019 +0200 +++ b/Plugin/Configuration.cpp Mon Aug 26 10:24:55 2019 +0200 @@ -439,7 +439,7 @@ if (boost::iequals(it->first, name)) { value = it->second; - return false; + return true; } }