diff --git a/server/homebrew.api.js b/server/homebrew.api.js index 8210fbb65..293e8f873 100644 --- a/server/homebrew.api.js +++ b/server/homebrew.api.js @@ -108,7 +108,7 @@ const excludePropsFromUpdate = (brew)=>{ const excludeGoogleProps = (brew)=>{ const modified = _.clone(brew); - const propsToExclude = ['tags', 'systems', 'published', 'authors', 'owner', 'views']; + const propsToExclude = ['tags', 'systems', 'published', 'authors', 'owner', 'views', 'thumbnail']; for (const prop of propsToExclude) { delete modified[prop]; }