From 79c22f383f9c93ab785ac788a338e74ca9c53954 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Wed, 31 Jul 2024 18:13:31 -0400 Subject: [PATCH] Allow renderer and pagecount into stubs At this point, only text and textbin contents are still in google drive. Which is the majority of the file still. Renderer and Pagecount may become useful for Vault page, and Renderer is needed for themes. --- 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 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; }