Bug Fix
- Fix Element Desktop native OIDC login: MAS was missing loopback redirect URIs for the Element Web/Desktop OIDC client. Without
http://localhostregistered, MAS rejects the authorization request when Element Desktop (≥1.11) attempts native OIDC, forcing fallback to the legacy compat SSO (login-token) flow. Addedhttp://localhostandhttp://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 masOr add them manually to mas/config/config.yaml under the 01HQW90Z35CMXFJWQPHC3BGZGQ client:
- 'http://localhost'
- 'http://127.0.0.1'Then: docker compose restart mas