mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:16:07 -04:00
Check presence state is a valid one
This commit is contained in:
parent
ddca9c56fc
commit
114b929f8b
2 changed files with 6 additions and 1 deletions
|
@ -606,6 +606,12 @@ class PresenceHandler(BaseHandler):
|
|||
status_msg = state.get("status_msg", None)
|
||||
presence = state["presence"]
|
||||
|
||||
valid_presence = (
|
||||
PresenceState.ONLINE, PresenceState.UNAVAILABLE, PresenceState.OFFLINE
|
||||
)
|
||||
if presence not in valid_presence:
|
||||
raise SynapseError(400, "Invalid presence state")
|
||||
|
||||
user_id = target_user.to_string()
|
||||
|
||||
prev_state = yield self.current_state_for_user(user_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue