It seems like WebSocket connections are not working within the Zoom app, and Supabase real-time functionality is also not functioning properly

When i open the developer tools in Zoom In App, Safari appears, but there are no WebSockets at all in the Network tab, and there are no requests

Also, I’m using the real-time feature supported by Supabase, but it’s not working.

// user-script.js

(function(){if (typeof window.WebSocket.isInAllowHostList === 'function') {return; }
function whiteListedWebSocket(realWebSocket) {
  var realURL = URL;
  return class WebSocket extends realWebSocket {
  static isInAllowHostList(hostName) { 
  var allowed_domain_list = ["ff25-183-96-188-173.ngrok-free.app","appssdk.zoom.us","eventcat.live","supabase.co","eventcat.com"];
  var ret = false;  for(var domain of allowed_domain_list) {
    if ('*' == domain[0]) {
      if (hostName.endsWith(domain.substr(1)) || domain.substr(2) == hostName) {
      ret = true;
          break;
      }
    }
    else {
      if (hostName == domain){
        ret = true;
        break;
      }
    }
  }
  return ret;
  };
  constructor(url,protocol) {
    var URLObj = new realURL(url);
    if ('wss:'!= URLObj.protocol) {
      throw 'Protocol is not valid';
    }
    var hostName = URLObj.hostname;
      if (!WebSocket.isInAllowHostList(hostName)) {
        throw 'URL is not valid';
      }
      super(url,protocol);
    }
  };
}
  window.WebSocket = whiteListedWebSocket(window.WebSocket);
})();