mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
Avoid getting exceptions when user has no access to status app but getting notified by broadcast message
This commit is contained in:
parent
8628b50ffb
commit
6d467e33ed
@ -523,6 +523,18 @@
|
||||
{
|
||||
this.tabsUi.getTab(_appname).setNotification(_value);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* This method only used for status app when it tries to broadcast data to users
|
||||
* avoiding throwing exceptions for users whom might have no status app access
|
||||
*
|
||||
* @param {type} _data
|
||||
* @returns {undefined}
|
||||
*/
|
||||
execPushBroadcastAppStatus: function(_data)
|
||||
{
|
||||
if (app.status) app.status.mergeContent(_data);
|
||||
}
|
||||
});
|
||||
})(window);
|
||||
|
Loading…
Reference in New Issue
Block a user