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.
Upgrading from 0.19.1 to anything above results in strange header behavior.
0.19.1:
1.13.6:
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.