fix desktop notifs, which were broken in eab463fd

This commit is contained in:
Matthew Hodgson 2014-09-06 10:26:30 -07:00 committed by Emmanuel ROHEE
parent ce5cd2202f
commit dc1f202eca
2 changed files with 3 additions and 3 deletions

View file

@ -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;