Support FAQ

Prev Next

Why is my connection slow or why can’t the iOS app connect?

If your connection is slow or inconsistent, the most common cause is that WebSocket connections are not working correctly.

When WebSockets fail:

  • The web client falls back to HTTP (XHR)

  • This fallback is significantly slower and less reliable

This issue is usually caused by a misconfigured reverse proxy.

How do I check if WebSockets are working?

Steps:

  1. Open Chrome and go to your workspace

  2. Right-click anywhere on the page and select Inspect

  3. Go to the Network tab and refresh the page

  4. In the filter bar, select WS (WebSocket)

  5. Look for a connection similar to:

    wss://your-domain/websocket
  6. Click the WebSocket connection and check the Status Code. A successful connection should show:

    101 Switching Protocols
  7. Check the Response Headers. You should see:

    Connection: Upgrade
    Upgrade: websocket
    Sec-WebSocket-Accept: <value>