Merge pull request #2094 from TheOneWithTheBraid/braid/well-known-fix
fix: null check on Client.userID in Client.checkHomeserver
This commit is contained in:
commit
8d8cbfb0b9
|
|
@ -583,7 +583,10 @@ class Client extends MatrixApi {
|
||||||
@override
|
@override
|
||||||
Future<DiscoveryInformation> getWellknown() async {
|
Future<DiscoveryInformation> getWellknown() async {
|
||||||
final wellKnownResponse = await httpClient.get(
|
final wellKnownResponse = await httpClient.get(
|
||||||
Uri.https(userID!.domain!, '/.well-known/matrix/client'),
|
Uri.https(
|
||||||
|
userID?.domain ?? homeserver!.host,
|
||||||
|
'/.well-known/matrix/client',
|
||||||
|
),
|
||||||
);
|
);
|
||||||
final wellKnown = DiscoveryInformation.fromJson(
|
final wellKnown = DiscoveryInformation.fromJson(
|
||||||
jsonDecode(utf8.decode(wellKnownResponse.bodyBytes))
|
jsonDecode(utf8.decode(wellKnownResponse.bodyBytes))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue