summary refs log tree commit diff
path: root/webclient/components
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2014-09-06 10:26:30 -0700
committerMatthew Hodgson <matthew@matrix.org>2014-09-06 10:26:41 -0700
commit41907209bbc7a98c461f5c30dab75bc58164a77e (patch)
tree79a1887a11b44f952320d282847bed34a47e94e3 /webclient/components
parentCenter recaptcha dialog. (diff)
downloadsynapse-41907209bbc7a98c461f5c30dab75bc58164a77e.tar.xz
fix desktop notifs, which were broken in eab463fd
Diffstat (limited to 'webclient/components')
-rw-r--r--webclient/components/matrix/presence-service.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/components/matrix/presence-service.js b/webclient/components/matrix/presence-service.js
index 952c8ec8a9..b487e3d3bd 100644
--- a/webclient/components/matrix/presence-service.js
+++ b/webclient/components/matrix/presence-service.js
@@ -24,7 +24,7 @@ angular.module('mPresence', [])
 .service('mPresence', ['$timeout', 'matrixService', function ($timeout, matrixService) {
 
     // Time in ms after that a user is considered as unavailable/away
-    var UNAVAILABLE_TIME = 5 * 60000; // 5 mins
+    var UNAVAILABLE_TIME = 3 * 60000; // 3 mins
    
     // The current presence state
     var state = undefined;