diff options
author | Joas Schilling <coding@schilljs.com> | 2020-09-30 16:17:18 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-10-01 08:54:35 +0200 |
commit | 0c7c358d134e4f12b18364f23e32b991176dabc1 (patch) | |
tree | 0f88f633c0074857d3418b4f086489aaf4144631 /apps/user_status/lib/Service | |
parent | aeb7329b3db0b1cbfa41bdedf9bccb230a3910d8 (diff) | |
download | nextcloud-server-0c7c358d134e4f12b18364f23e32b991176dabc1.tar.gz nextcloud-server-0c7c358d134e4f12b18364f23e32b991176dabc1.zip |
Increase the timeout of statuses
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_status/lib/Service')
-rw-r--r-- | apps/user_status/lib/Service/StatusService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_status/lib/Service/StatusService.php b/apps/user_status/lib/Service/StatusService.php index 85368342b25..39edad35850 100644 --- a/apps/user_status/lib/Service/StatusService.php +++ b/apps/user_status/lib/Service/StatusService.php @@ -77,7 +77,7 @@ class StatusService { ]; /** @var int */ - public const INVALIDATE_STATUS_THRESHOLD = 5 /* minutes */ * 60 /* seconds */; + public const INVALIDATE_STATUS_THRESHOLD = 15 /* minutes */ * 60 /* seconds */; /** @var int */ public const MAXIMUM_MESSAGE_LENGTH = 80; |