incyclist-services 1.3.39 → 1.3.40

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.
@@ -374,9 +374,11 @@ let ActivitiesRepository = (() => {
374
374
  try {
375
375
  const details = (_a = result.value) === null || _a === void 0 ? void 0 : _a.details;
376
376
  const name = (_b = result.value) === null || _b === void 0 ? void 0 : _b.name;
377
- const summary = (0, utils_2.buildSummary)(details, name);
378
- this.activities.push({ summary });
379
- this.emitAdded({ summary });
377
+ if (details) {
378
+ const summary = (0, utils_2.buildSummary)(details, name);
379
+ this.activities.push({ summary });
380
+ this.emitAdded({ summary });
381
+ }
380
382
  }
381
383
  catch (err) {
382
384
  this.logError(err, 'bulkAddActivities.loop');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "incyclist-services",
3
- "version": "1.3.39",
3
+ "version": "1.3.40",
4
4
  "peerDependencies": {
5
5
  "gd-eventlog": "^0.1.26"
6
6
  },