Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Erreur en voulant démarrer un appel de groupe #1128

Open
Tracked by #1087
MarcWadai opened this issue Oct 9, 2024 · 3 comments
Open
Tracked by #1087

Erreur en voulant démarrer un appel de groupe #1128

MarcWadai opened this issue Oct 9, 2024 · 3 comments
Labels

Comments

@MarcWadai
Copy link
Contributor

MarcWadai commented Oct 9, 2024

Quand on veut démarrer un appel element call depuis web, nous avons cette erreur :

image

Cet appel renvoie un 502 bad gateway :

[GET] https://element-call.tchap.incubateur.net/room?widgetId=YqtqAqOeaaIF4WC5j83Q4RUo&parentUrl=http://localhost:8080/

image

@MarcWadai
Copy link
Contributor Author

L"erreur semble venir de ce bout de code dans Call.ts: pour des raisons inconnus encore , on arrive pas à recevoir de messaging

  const messagingStore = WidgetMessagingStore.instance;
        this.messaging = messagingStore.getMessagingForUid(this.widgetUid) ?? null;
        if (!this.messaging) {
            // The widget might still be initializing, so wait for it.
            try {
                await waitForEvent(
                    messagingStore,
                    WidgetMessagingStoreEvent.StoreMessaging,
                    (uid: string, widgetApi: ClientWidgetApi) => {
                        if (uid === this.widgetUid) {
                            this.messaging = widgetApi;
                            return true;
                        }
                        return false;
                    },
                );
            } catch (e) {
                throw new Error(`Failed to bind call widget in room ${this.roomId}: ${e}`);
            }
        }

@MarcWadai MarcWadai moved this to sprint en cours - WIP in Roadmap Produit Oct 16, 2024
@MarcWadai
Copy link
Contributor Author

Une erreur similaire recensé chez element sans résolution : element-hq/element-call#2269

@MarcWadai
Copy link
Contributor Author

MarcWadai commented Oct 22, 2024

@MatMaul une idée ? j'ai essayé de regarder les logs sur le serveur element-call, mais rien de concluant 😅

Démarrer un call depuis le web, déclenche l'utilisation d'element-call en mode embedded (utilisation du fichier widget.ts qui va utiliser matrix-js-sdk ). Est-ce que ca peut avoir un incident le fait qu'on ai pas d'integration manager dédié à tchap ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: blocked/waiting
Development

No branches or pull requests

1 participant