@dhyasama/totem-models 8.32.0 → 8.32.1
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.
- package/lib/Financials.js +2 -2
- package/package.json +1 -1
package/lib/Financials.js
CHANGED
|
@@ -493,7 +493,7 @@ module.exports = function(mongoose, config) {
|
|
|
493
493
|
|
|
494
494
|
results.push({
|
|
495
495
|
'uuid': snapshot.uuid,
|
|
496
|
-
'recipients': stakeholder.sendTo.email
|
|
496
|
+
'recipients': [stakeholder.sendTo.email]
|
|
497
497
|
});
|
|
498
498
|
|
|
499
499
|
return callback3();
|
|
@@ -561,7 +561,7 @@ module.exports = function(mongoose, config) {
|
|
|
561
561
|
|
|
562
562
|
results.push({
|
|
563
563
|
'uuid': snapshot.uuid,
|
|
564
|
-
'recipients': stakeholder.sendTo.email
|
|
564
|
+
'recipients': [stakeholder.sendTo.email]
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
return callback3();
|