Fixed JS error
This commit is contained in:
parent
bbdfff4e32
commit
f89f96dc59
@ -128,7 +128,7 @@ Zarafa.plugins.calendarimporter.data.Actions = {
|
||||
var inbox = container.getHierarchyStore().getDefaultStore();
|
||||
var pub = container.getHierarchyStore().getPublicStore();
|
||||
|
||||
if (!Ext.isEmpty(inbox.subStores) && inbox.subStores.folders.totalLength > 0) {
|
||||
if (!Ext.isEmpty(inbox) && !Ext.isEmpty(inbox.subStores)) {
|
||||
for (var i = 0; i < inbox.subStores.folders.totalLength; i++) {
|
||||
var folder = inbox.subStores.folders.getAt(i);
|
||||
if (!Ext.isEmpty(folder) && folder.get("container_class") == "IPF.Appointment") {
|
||||
@ -149,7 +149,7 @@ Zarafa.plugins.calendarimporter.data.Actions = {
|
||||
}
|
||||
}
|
||||
|
||||
if (!Ext.isEmpty(pub.subStores) && pub.subStores.folders.totalLength > 0) {
|
||||
if (!Ext.isEmpty(pub) && !Ext.isEmpty(pub.subStores)) {
|
||||
for (var j = 0; j < pub.subStores.folders.totalLength; j++) {
|
||||
var folder = pub.subStores.folders.getAt(j);
|
||||
if (!Ext.isEmpty(folder) && folder.get("container_class") == "IPF.Appointment") {
|
||||
|
Loading…
Reference in New Issue
Block a user