-
-
Notifications
You must be signed in to change notification settings - Fork 11.6k
Headers have "\r" character #7455
Copy link
Copy link
Closed
Labels
issue::bugThis issue is related to a bug that requires fixingThis issue is related to a bug that requires fixing
Description
Upgrading from 0.19.1 to anything above results in strange header behavior.
0.19.1:
cache-control: "no-cache"
content-length: "3284"
content-type: "application/json; charset=utf-8"
expires: "-1"
pragma: "no-cache"
1.13.6:
cache-control: "no-cache\r"
content-length: "3284\r"
content-type: "application/json; charset=utf-8\r"
expires: "-1\r"
pragma: "no-cache\r"
Why do they all have newline characters? Is this intentional? I could not find anything about this. It seems strange to have to manually call replace('\r', '') just to get the actual value.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
issue::bugThis issue is related to a bug that requires fixingThis issue is related to a bug that requires fixing