0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 17:22:45 +00:00

flailing around.

This commit is contained in:
Gazook89
2022-10-21 12:01:19 -05:00
parent d92d00581a
commit af094474b8
7 changed files with 17 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ const excludePropsFromUpdate = (brew)=>{
const excludeGoogleProps = (brew)=>{
const modified = _.clone(brew);
const propsToExclude = ['tags', 'systems', 'published', 'authors', 'owner', 'views', 'thumbnail'];
const propsToExclude = ['tags', 'systems', 'published', 'authors', 'owner', 'views', 'thumbnail', 'lang'];
for (const prop of propsToExclude) {
delete modified[prop];
}