Skip to content

Commit 0156a65

Browse files
committedJan 24, 2019
prepare previousModel before preConditions to prevent mutation
1 parent 79f80ae commit 0156a65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/definitions/aggregate.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -738,13 +738,13 @@ _.extend(Aggregate.prototype, {
738738
throw new Error('You are not allowed to set a value in this step!');
739739
};
740740

741+
var previousModel = new AggregateModel(aggregateModel.id, aggregateModel);
742+
741743
this.checkPreConditions(cmd, aggregateModel, function (err) {
742744
if (err) {
743745
return callback(err);
744746
}
745747

746-
var previousModel = new AggregateModel(aggregateModel.id, aggregateModel);
747-
748748
// attach apply function
749749
aggregateModel.apply = applyHelper(self, aggregateModel, cmd);
750750

0 commit comments

Comments
 (0)
Please sign in to comment.