Hi,
we randomly encountered a new Error that in Chromium Browsers only the BBB cant be loaded because it is in an infinite enter loop. Sometimes it manages to connect but often it doesn't. Weirdly enough the join URL if used in another tab without the iFrame works fine.
Our setup is like this:
BBB 2.4
Scalelite 1.3
A website running under the same domain as the BBB Server.
We get a valid Join url from our server which is embedded in the iFrame:
Then the BBB Server gives us a valid enter response (...api/enter?sessionToken=xyz)
Then it gets weird, we get a loop of
1. https://.../html5client/sockjs/598/6bwbfsff/xhr -> 200
2. https://...html5client/sockjs/598/6bwbfsff/xhr_send -> 200
Then at some point we get a 404 from this request (https://...html5client/sockjs/598/6bwbfsff/xhr_send)
And it repeats itself.
In the console we get a
Uncaught (in promise) - {error: 401, description: 'Authentication failed due to missing credentials'}
- description: "Authentication failed due to missing credentials"
- error: 401
and
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'map')
at I (d13d9965f0d30ea95c841b5e157517ca9def8c8d.js?meteor_js_resource=true:375:809557)
Any ideas whats happening?