Benoit Marty

Results 318 comments of Benoit Marty

I can successfully login using full matrix id (ex: `@user:matrix.org`), simple matrixId (ex: `user`) or email and the password of the account. @ccjon ensure that you are using the correct...

Do you still have the issue with the latest Element Android application? This issue is getting old and I would like to fix it or to close it.

Element can give access to content for adults only, that's why on some countries the Google PlayStore requires that the user's age is above 18. 2 possible alternatives: - install...

Are you using an emulator to run Element Android? If it is the case, URLs like http://192.168.0.109:8008 can not work because it is not the 192.168 is not the lan...

Other potential issue: naughty clients could add some urls in `url_previews` that are not in the message, resulting in URL preview displaying bad content not related to the message. Why...

> the MSC states that URLs in `url_previews` must be exactly the URLs in the message body Yes, but what if it's not the case? Anyway, maybe the pb is...

In the same vein `disable_ssl_verification()` should probably take a Boolean parameter, and there are maybe other APIs to improve.

If it accepts `null` (`proxyProvider.provides()` returns nullable `String`): ```kotlin val client = ClientBuilder() .basePath(baseDirectory.absolutePath) .homeserverUrl(sessionData.homeserverUrl) .username(sessionData.userId) .passphrase(sessionData.passphrase) .userAgent(userAgentProvider.provide()) .let { val proxy = proxyProvider.provides() if (proxy != null) { it.proxy(proxy)...

Other clients of the Rust SDK may not need to provide all the params. If it is too problematic to change this API, let's close the issue as `not planned`,...

It's not really a builder pattern, since each call to a builder method return a new builder instance at least from the application point of view. A builder should return...