79338667

Date: 2025-01-08 10:04:40
Score: 2
Natty:
Report link

I ran into the same problem today and managed to fix it.

I had this code in my component:

const { join } = useMeeting({ ... ... });

useEffect(() => {
   join();
}, []);

It seems the problem is related to join so I add a timeout on it.

useEffect(() => {
  setTimeout(() => {
    join();
  }, 500);
}, []);

This is a bad solution but it did save my day.

Reasons:
  • Blacklisted phrase (2): save my day
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cygra