Jason Stewart

Results 1 issues of Jason Stewart

Is this a bug? Getting scheme works: ``` (-> "https://foo.bar" fish/uri fish/scheme str) "https" ``` Changing scheme works: ``` user> (-> "https://foo.bar" fish/uri (fish/scheme "http") str) "http://foo.bar" ``` Setting scheme...