Closed electic closed 5 months ago
I think you guys are doing something great, but ran into an issue.
pub fn url_from_host_and_scheme( host: impl AsRef<str>, uri: impl AsRef<str>, scheme: impl AsRef<str>, ) -> String { format!( "{}://{}{API_NAMESPACE}{}", scheme.as_ref(), host.as_ref(), uri.as_ref() ) }
Does not support ports so if you url scheme is something other than 80, liboxen does not connect.
I think you guys are doing something great, but ran into an issue.
Does not support ports so if you url scheme is something other than 80, liboxen does not connect.