0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 11:22:39 +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;
};
HomebrewSchema.methods.increaseView = function(){
return new Promise((resolve, reject)=>{
this.lastViewed = new Date();
this.views = this.views + 1;
const text = this.text;
this.text = undefined;
this.save((err)=>{
if(err) return reject(err);
return resolve(this);
});
this.text = text;
HomebrewSchema.methods.increaseView = async function(){
this.lastViewed = new Date();
this.views = this.views + 1;
const text = this.text;
this.text = undefined;
await this.save()
.catch((err)=>{
return err;
});
this.text = text;
return this;
};
HomebrewSchema.statics.get = function(query){