0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 12:12:43 +00:00

Fix share uncompressing views... again

This commit is contained in:
Trevor Buckner
2020-10-19 17:36:58 -04:00
parent 40d120d875
commit ac2d6fe9a8

View File

@@ -34,18 +34,17 @@ HomebrewSchema.methods.sanatize = function(full=false){
return brew; return brew;
}; };
HomebrewSchema.methods.increaseView = function(){ HomebrewSchema.methods.increaseView = async function(){
return new Promise((resolve, reject)=>{
this.lastViewed = new Date(); this.lastViewed = new Date();
this.views = this.views + 1; this.views = this.views + 1;
const text = this.text; const text = this.text;
this.text = undefined; this.text = undefined;
this.save((err)=>{ await this.save()
if(err) return reject(err); .catch((err)=>{
return resolve(this); return err;
}); });
this.text = text; this.text = text;
}); return this;
}; };
HomebrewSchema.statics.get = function(query){ HomebrewSchema.statics.get = function(query){