mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Fix Jitsi wellknown hooks some more
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
a674131a8c
commit
d92f742205
@ -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> => {
|
||||
|
Loading…
Reference in New Issue
Block a user