mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Make sure we have no errors if calendar entry is somehow missing.
This commit is contained in:
parent
dd0e541605
commit
fa6ecf8176
@ -133,7 +133,7 @@ app.classes.addressbook = AppJS.extend(
|
|||||||
{
|
{
|
||||||
// Event changed, update any [known] contacts participating
|
// Event changed, update any [known] contacts participating
|
||||||
var content = egw.dataGetUIDdata(_app+'::'+_id);
|
var content = egw.dataGetUIDdata(_app+'::'+_id);
|
||||||
if (content.data && content.data.participant_types && content.data.participant_types.c)
|
if (content && content.data && content.data.participant_types && content.data.participant_types.c)
|
||||||
{
|
{
|
||||||
for(var contact in content.data.participant_types.c)
|
for(var contact in content.data.participant_types.c)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user