Fix Jitsi wellknown hooks some more

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-06-03 14:09:45 +01:00
parent a674131a8c
commit d92f742205
1 changed files with 2 additions and 5 deletions

View File

@ -37,11 +37,8 @@ export class Jitsi {
public start() {
const cli = MatrixClientPeg.get();
cli.on("WellKnown.client", this.update);
const discoveryResponse = cli.getClientWellKnown();
if (discoveryResponse) {
// if we missed the first WellKnown.client event then call update anyway
this.update(discoveryResponse);
}
// call update initially in case we missed the first WellKnown.client event and for if no well-known present
this.update(cli.getClientWellKnown());
}
private update = async (discoveryResponse): Promise<any> => {