From ca09e98d8f4382cdf3a4d9c1ff5110b0f2834330 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Sat, 24 Sep 2022 23:50:20 +1200 Subject: [PATCH] Exclude thumbnail from Google props --- server/homebrew.api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }