We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5201fb commit 80b18aaCopy full SHA for 80b18aa
synapse/handlers/presence.py
@@ -102,14 +102,14 @@
102
103
# If a user was last active in the last LAST_ACTIVE_GRANULARITY, consider them
104
# "currently_active"
105
-LAST_ACTIVE_GRANULARITY = 5 * 60 * 1000
+LAST_ACTIVE_GRANULARITY = 10 * 60 * 1000
106
107
# How long to wait until a new /events or /sync request before assuming
108
# the client has gone.
109
SYNC_ONLINE_TIMEOUT = 30 * 1000
110
111
# How long to wait before marking the user as idle. Compared against last active
112
-IDLE_TIMER = 10 * 60 * 1000
+IDLE_TIMER = 12 * 60 * 1000
113
114
# How often we expect remote servers to resend us presence.
115
FEDERATION_TIMEOUT = 30 * 60 * 1000
0 commit comments