* Notifications/all apps: do not block other requests while notifications are queried

by committing the session
This commit is contained in:
Ralf Becker 2015-10-19 08:07:28 +00:00
parent f42a218e1e
commit 6e5bcbd6dd

View File

@ -109,7 +109,11 @@ class notifications_ajax {
*
* @return xajax response
*/
public function get_notifications($browserNotify = false) {
public function get_notifications($browserNotify = false)
{
// close session now, to not block other user actions, as specially mail checks can be time consuming
$GLOBALS['egw']->session->commit_session();
// call a hook for notifications on new mail
//if ($GLOBALS['egw_info']['user']['apps']['mail']) $this->check_mailbox();
$GLOBALS['egw']->hooks->process('check_notify');