Cleanup
This commit is contained in:
4
node_modules/mongoose/lib/plugins/validateBeforeSave.js
generated
vendored
4
node_modules/mongoose/lib/plugins/validateBeforeSave.js
generated
vendored
@@ -21,7 +21,7 @@ module.exports = function(schema) {
|
||||
if (hasValidateBeforeSaveOption) {
|
||||
shouldValidate = !!options.validateBeforeSave;
|
||||
} else {
|
||||
shouldValidate = this.schema.options.validateBeforeSave;
|
||||
shouldValidate = this.$__schema.options.validateBeforeSave;
|
||||
}
|
||||
|
||||
// Validate
|
||||
@@ -33,7 +33,7 @@ module.exports = function(schema) {
|
||||
{ validateModifiedOnly: options.validateModifiedOnly } :
|
||||
null;
|
||||
this.validate(validateOptions, function(error) {
|
||||
return _this.schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
return _this.$__schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
_this.$op = 'save';
|
||||
next(error);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user