<body><div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        Hi all!<div><br></div><div>I just backported this fix to 5.3, 5.2, and 5.1.</div><div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div><blockquote class="history_container" type="cite" style="border-left-style:solid;border-width:1px; margin-top:20px; margin-left:0px;padding-left:10px;">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 08.05.2020 08:56:32 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">Marcel Taeumel uploaded a new version of WebClient-Core to project The Trunk:<br>http://source.squeak.org/trunk/WebClient-Core-tobe.121.mcz<br><br>==================== Summary ====================<br><br>Name: WebClient-Core-tobe.121<br>Author: tobe<br>Time: 7 May 2020, 9:23:39.84201 pm<br>UUID: c6e964fd-dbe1-41dc-8724-e9b825130b7e<br>Ancestors: WebClient-Core-tobe.120<br><br>ignore content as stated in rfc7230, if:<br>- we have a HEAD request<br>- code is 1xx<br>- code is 204 No Content<br>- code is 304 Not Modified<br><br>=============== Diff against WebClient-Core-nice.119 ===============<br><br>Item was changed:<br>  ----- Method: WebResponse>>getContent (in category 'private') -----<br>  getContent<br>+    "   Any response to a HEAD request and any response with a 1xx<br>+        (Informational), 204 (No Content), or 304 (Not Modified) status<br>+        code is always terminated by the first empty line after the<br>+        header fields, regardless of the header fields present in the<br>+        message, and thus cannot contain a message body.<br>+              - https://tools.ietf.org/html/rfc7230#section-3.3.3 "<br>+ <br>+       (request method = 'HEAD' or: [(code between: 100 and: 199) or: [code = 204 or: [code = 304]]]) ifTrue:[^''].<br>-         "Do not read any content if this was a HEAD request or code is 204 (no content)"<br>-   (request method = 'HEAD' or: [code = 204]) ifTrue:[^''].<br>      ^super getContent!<br><br><br></div></blockquote>
                                        </div></body>