0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-10 13:32:45 +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; await this.save()
this.save((err)=>{ .catch((err)=>{
if(err) return reject(err); return err;
return resolve(this);
});
this.text = text;
}); });
this.text = text;
return this;
}; };
HomebrewSchema.statics.get = function(query){ HomebrewSchema.statics.get = function(query){