richardg867 / WaybackProxy

HTTP proxy for tunneling requests through the Internet Archive Wayback Machine
GNU General Public License v3.0
667 stars 56 forks source link

Fix space on the HTTP response #5

Closed chris-l closed 2 years ago

chris-l commented 2 years ago

It is missing one space before the 200 OK response.

Without it, I got HTTP/1.1200 OK. It should be HTTP/1.1 200 OK

akpmast2007 commented 2 years ago

Can you saved this link on Wayback machine to 4 November 2017??? This link was uploaded in 3 November 2017 and deleted in 18 November 2017. here the link: https://www.youtube.com/watch?v=BAbOnV6fUM0

radiocolin commented 2 years ago

This fix results in an error because it makes the string into "HTTP/1.1200 OK". Inserting a space before the 200 OK or at the end of the HTTP version will fix that.