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:
@@ -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){
|
||||||
|
|||||||
Reference in New Issue
Block a user