From 046023c46a67759db191b5aa3cd502ba3d328b47 Mon Sep 17 00:00:00 2001 From: Alexander Sokol Date: Tue, 16 Mar 2021 01:07:00 +0200 Subject: [PATCH] [RES-100] Wrong uuid being sent when dispatching --- index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index fe04912..93ab779 100644 --- a/index.js +++ b/index.js @@ -261,7 +261,7 @@ function mapAttributes(data) { return accumulator; }; - const attributeList = ["type", "uri", "id", "checksum", "json"]; + const attributeList = ["type", "uri", "id", "checksum", "source", "json"]; return attributeList.reduce(attributeReducer, {}); } diff --git a/package.json b/package.json index 31c89f9..9308a3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@luxuryescapes/lib-events", - "version": "1.0.35", + "version": "1.0.36", "main": "index.js", "scripts": { "test": "./node_modules/.bin/jest && yarn run lint",