WebSocket notifications problems

I have Bitwarden_RS running on my Synology - Docker.
Creating users, webpage etc is working great. Except (auto) syncing the desktop app and browser extension through webSocket notifications.
WEBSOCKET_ENABLED=true has been set.

Auto syncing is not working and I’m seeing the following error in the logs:
[ws::handler][ERROR] WS Error <Io(Kind(InvalidData))>: Missing id or access token

Any one have a clue what’s going on?

I have created a bitwarden.conf file in /etc/nginx/sites-enabled with the following config:

    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    server_name bitwarden.mydomain.com;

    ssl_certificate /usr/syno/etc/certificate/ReverseProxy/fghrthtrh/fullchain.pem;

    ssl_certificate_key /usr/syno/etc/certificate/ReverseProxy/fghrthtrh/privkey.pem;

    location / {

        proxy_connect_timeout 60;

        proxy_read_timeout 60;

        proxy_send_timeout 60;

        proxy_intercept_errors off;

        proxy_http_version 1.1;

        proxy_set_header        Host            $http_host;

        proxy_set_header        X-Real-IP            $remote_addr;

        proxy_set_header        X-Forwarded-For            $proxy_add_x_forwarded_for;

        proxy_set_header        X-Forwarded-Proto            $scheme;

        proxy_pass http://localhost:8080;

    }

    location /notifications/hub {
        proxy_pass http://localhost:3012;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

    location /notifications/hub/negotiate {
        proxy_pass http://localhost:8080;
    }

    error_page 403 404 500 502 503 504 @error_page;

    location @error_page {
        root /usr/syno/share/nginx;
        rewrite (.*) /error.html break;
        allow all;
    }

}

This is fixed in images built from commit ec60839 or later.

Indeed it fixed!
Got it working now. Thanks