Parcourir la source

+validate method in Savable

Ivan Asmer il y a 4 ans
Parent
commit
13ad1f5e6c
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      index.js

+ 2 - 2
index.js

@@ -99,8 +99,8 @@ const mm = db => {
         }
 
         async save(noSync=false){
-            if (this.validate && !this.validate()){
-                throw new SyntaxError(`validation error entity ${this._id} of class ${this.constructor.name} (${this.name || this.key})`)
+            if (this.validate && !(await this.validate())){
+                throw new SyntaxError(`validation error on entity ${this._id} of class ${this.constructor.name} (${this.name || this.key}) save`)
             }
             if (this.empty) return this;