diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-03-18 16:34:47 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2021-03-18 16:34:47 +0100 |
commit | 405aeb0b2c40443d22ce8c265df18e81bd995b44 (patch) | |
tree | 34dc1487f416df1a73d1e0d25be0a703dfa0ae96 /synapse/app | |
parent | Ensure we use a copy of the event content dict before modifying it in seriali... (diff) | |
download | synapse-405aeb0b2c40443d22ce8c265df18e81bd995b44.tar.xz |
Implement MSC3026: busy presence state
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/generic_worker.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/app/generic_worker.py b/synapse/app/generic_worker.py index 274d582d07..236d98a29d 100644 --- a/synapse/app/generic_worker.py +++ b/synapse/app/generic_worker.py @@ -439,6 +439,7 @@ class GenericWorkerPresence(BasePresenceHandler): PresenceState.ONLINE, PresenceState.UNAVAILABLE, PresenceState.OFFLINE, + PresenceState.BUSY, ) if presence not in valid_presence: raise SynapseError(400, "Invalid presence state") |