Skip to content
Snippets Groups Projects
Unverified Commit 0b56481c authored by Brendan Abolivier's avatar Brendan Abolivier
Browse files

Fix lint

parent 066c7037
No related branches found
No related tags found
No related merge requests found
...@@ -441,12 +441,12 @@ class GenericWorkerPresence(BasePresenceHandler): ...@@ -441,12 +441,12 @@ class GenericWorkerPresence(BasePresenceHandler):
PresenceState.ONLINE, PresenceState.ONLINE,
PresenceState.UNAVAILABLE, PresenceState.UNAVAILABLE,
PresenceState.OFFLINE, PresenceState.OFFLINE,
PresenceState.BUSY,
) )
if self._busy_presence_enabled: if presence not in valid_presence or (
valid_presence += (PresenceState.BUSY,) presence == PresenceState.BUSY and not self._busy_presence_enabled
):
if presence not in valid_presence:
raise SynapseError(400, "Invalid presence state") raise SynapseError(400, "Invalid presence state")
user_id = target_user.to_string() user_id = target_user.to_string()
......
...@@ -732,12 +732,12 @@ class PresenceHandler(BasePresenceHandler): ...@@ -732,12 +732,12 @@ class PresenceHandler(BasePresenceHandler):
PresenceState.ONLINE, PresenceState.ONLINE,
PresenceState.UNAVAILABLE, PresenceState.UNAVAILABLE,
PresenceState.OFFLINE, PresenceState.OFFLINE,
PresenceState.BUSY,
) )
if self._busy_presence_enabled: if presence not in valid_presence or (
valid_presence += (PresenceState.BUSY,) presence == PresenceState.BUSY and not self._busy_presence_enabled
):
if presence not in valid_presence:
raise SynapseError(400, "Invalid presence state") raise SynapseError(400, "Invalid presence state")
user_id = target_user.to_string() user_id = target_user.to_string()
...@@ -750,9 +750,8 @@ class PresenceHandler(BasePresenceHandler): ...@@ -750,9 +750,8 @@ class PresenceHandler(BasePresenceHandler):
msg = status_msg if presence != PresenceState.OFFLINE else None msg = status_msg if presence != PresenceState.OFFLINE else None
new_fields["status_msg"] = msg new_fields["status_msg"] = msg
if ( if presence == PresenceState.ONLINE or (
presence == PresenceState.ONLINE or self._busy_presence_enabled and presence == PresenceState.BUSY
(self._busy_presence_enabled and presence == PresenceState.BUSY)
): ):
new_fields["last_active_ts"] = self.clock.time_msec() new_fields["last_active_ts"] = self.clock.time_msec()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment