Remove "user_id" from GET /presence. (#7606)
This commit is contained in:
parent
1ad06ee6eb
commit
a3fbc23c39
|
@ -0,0 +1 @@
|
|||
Remove `user_id` from the response to `GET /_matrix/client/r0/presence/{userId}/status` to match the specification.
|
|
@ -51,7 +51,9 @@ class PresenceStatusRestServlet(RestServlet):
|
|||
raise AuthError(403, "You are not allowed to see their presence.")
|
||||
|
||||
state = await self.presence_handler.get_state(target_user=user)
|
||||
state = format_user_presence_state(state, self.clock.time_msec())
|
||||
state = format_user_presence_state(
|
||||
state, self.clock.time_msec(), include_user_id=False
|
||||
)
|
||||
|
||||
return 200, state
|
||||
|
||||
|
|
Loading…
Reference in New Issue