RangerMauve / hypercore-fetch

Implementation of Fetch that uses the Hyper SDK for loading p2p content
MIT License
36 stars 12 forks source link

URI-encoding question marks #69

Closed josephmturner closed 1 year ago

josephmturner commented 1 year ago

How should clients handle question marks in the path portion of hyper URLs?

Currently, if we don't encode question marks, the portion after the question mark is treated as a search query and removed. If we do encode question marks, we get %3F back from GET requests instead of question marks.

Demonstrated in #70.