@syncfusion/ej2-pdf-export 34.1.29 → 34.1.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6366,7 +6366,9 @@ class PdfMainObjectCollection {
6366
6366
  let reference;
6367
6367
  this.isNew = false;
6368
6368
  let oi = this.objectCollections[this.index];
6369
- reference = oi.reference;
6369
+ if (oi) {
6370
+ reference = oi.reference;
6371
+ }
6370
6372
  let obj = { reference: reference, wasNew: isNew };
6371
6373
  return obj;
6372
6374
  }