Right now my app receives the Matrix server as a URI..
which I then parse and pass to your builder...
MatrixResources.factory()
.builder()
.https(uri.is_https)
.hostname(uri.hostname)
.port(uri.port)
which then reassembles it into a URI!
|
public MatrixUri createUri(boolean https, Integer port, String... pathSegments) { |
Is there any chance I could just pass the URI to the builder?
Thanks!
Right now my app receives the Matrix server as a URI..
which I then parse and pass to your builder...
which then reassembles it into a URI!
matrix-communication-client/src/main/java/com/cosium/matrix_communication_client/MatrixHostname.java
Line 18 in dcf3a1b
Is there any chance I could just pass the URI to the builder?
Thanks!