We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbf6ea5 commit bacfa8dCopy full SHA for bacfa8d
adafruit_requests.py
@@ -359,7 +359,7 @@ def _parse_headers(self) -> None:
359
if title == "transfer-encoding":
360
self._chunked = content.strip().lower() == "chunked"
361
if title == "set-cookie" and title in self._headers:
362
- self._headers[title] = self._headers[title] + ", " + content
+ self._headers[title] += ", " + content
363
else:
364
self._headers[title] = content
365
0 commit comments