Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1.45.0rc1 | Brendan Abolivier | 2021-10-12 | 1 | -1/+0 |
| | |||||
* | Fix getTurnServer response: return an integer ttl (#10922) | Lukas Lihotzki | 2021-09-30 | 1 | -0/+1 |
`ttl` must be an integer according to the OpenAPI spec: https://github.com/matrix-org/matrix-doc/blob/old_master/data/api/client-server/voip.yaml#L70 True division (`/`) returns a float instead (`"ttl": 7200.0`). Floor division (`//`) returns an integer, so the response is spec compliant. Signed-off-by: Lukas Lihotzki <lukas@lihotzki.de> |