Merge pull request #1939 from owncloud/session_heartbeat

use 15 min instead of 15 sec timeout
This commit is contained in:
Lukas Reschke 2013-02-26 11:28:15 -08:00
commit d3aecdab09
1 changed files with 1 additions and 1 deletions

View File

@ -827,6 +827,6 @@ function sessionHeartBeat(){
setInterval(function(){ setInterval(function(){
var url = OC.Router.generate('heartbeat'); var url = OC.Router.generate('heartbeat');
$.post(url); $.post(url);
}, 15000); }, 900000);
}); });
} }