diff --git a/server/homebrew.api.js b/server/homebrew.api.js index 569d35202a..c314454e2f 100644 --- a/server/homebrew.api.js +++ b/server/homebrew.api.js @@ -186,7 +186,7 @@ const api = { return modified; }, excludeStubProps : (brew)=>{ - const propsToExclude = ['text', 'textBin', 'renderer', 'pageCount']; + const propsToExclude = ['text', 'textBin']; for (const prop of propsToExclude) { brew[prop] = undefined; }