Skip to content

v1.6.4

Latest

Choose a tag to compare

@wlphi wlphi released this 12 May 12:33

Bug Fix

  • Fix Element Desktop native OIDC login: MAS was missing loopback redirect URIs for the Element Web/Desktop OIDC client. Without http://localhost registered, MAS rejects the authorization request when Element Desktop (≥1.11) attempts native OIDC, forcing fallback to the legacy compat SSO (login-token) flow. Added http://localhost and http://127.0.0.1 — per RFC 8252, these match any port on the loopback address.

Upgrading

Regenerate mas/config/config.yaml to pick up the new redirect URIs:

git pull
./deploy.sh   # or ./quickstart.sh for single-machine deployments
docker compose restart mas

Or add them manually to mas/config/config.yaml under the 01HQW90Z35CMXFJWQPHC3BGZGQ client:

      - 'http://localhost'
      - 'http://127.0.0.1'

Then: docker compose restart mas